Sha256: 0d8aa8c4d23702c4800e48a8f84c48ce51cb8d69cc223bd495054c84a7a327a3
Contents?: true
Size: 303 Bytes
Versions: 2
Compression:
Stored size: 303 Bytes
Contents
# frozen_string_literal: true # Portable Move Notation module module PortableMoveNotation def self.dump(*moves) Dump.call(*moves) end def self.load(pmn_string) Load.call(pmn_string) end end require_relative 'portable_move_notation/dump' require_relative 'portable_move_notation/load'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
portable_move_notation-0.2.0 | lib/portable_move_notation.rb |
portable_move_notation-0.1.0 | lib/portable_move_notation.rb |