module Sashite::PAN

The PAN (Portable Action Notation) module

Public Class Methods

dump(*actions) click to toggle source
# File lib/sashite/pan.rb, line 6
def self.dump(*actions)
  Dumper.call(*actions)
end
parse(string) click to toggle source
# File lib/sashite/pan.rb, line 10
def self.parse(string)
  Parser.call(string)
end