Ruby Summary
- Java features the ability to serialize objects, letting you store them somewhere and reconstitute them when needed. Ruby calls this kind of serialization marshaling.
- Marshal.dump is used to save a serialized version of an object.
- Marshal.load is used to read in from a serialized object.
- A Ruby constant is a reference to an object.
- Although constants should not be changed, you can modify the internal states of the objects they reference.
- Remember the rules for constants.