A Note on ActiveRecord Serialization and Objects

by Erik Runyon on April 19, 2009

Let’s say you’re serializing a ruby object for later use in a field of another model. class Foo < ActiveRecord::Base serialize :bar end In this instance, assume an object of type “Bar” is what’s being serialized. After save, the data (…)

Read the rest of this entry »