module PortableMoveNotation
Portable Move
Notation module
Public Class Methods
dump(*moves)
click to toggle source
# File lib/portable_move_notation.rb, line 5 def self.dump(*moves) Dumper.call(*moves) end
parse(string)
click to toggle source
# File lib/portable_move_notation.rb, line 9 def self.parse(string) Parser.call(string) end