Marshaling Objects
Let’s learn about marshaling objects.
We'll cover the following...
Ruby can take an object and convert it into a stream of bytes that can be stored outside the application. This process is called marshaling. This saved object can later be read by another instance of the application or by a totally separate application, and a copy of the ...