A proof-of-concept binary serialization library for DragonRuby. Currently supports serializing:
Integer
s;Float
s;String
s;Symbol
s;nil
s,true
, andfalse
;Range
s;Array
s;Hash
es;Struct
s;Time
objects; and- arbitrary objects including the
Serializable
module
Currently supports deserializing:
Integer
s;Float
s;String
s;Symbol
s;nil
s,true
, andfalse
;Range
s;Array
s;Hash
es;Struct
s;Time
objects; and- arbitrary objects including the
Serializable
module
Currently it is impossible to serialize recursive structures. This may change in the future.