Archive for the “Ruby” category
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 (…)
What I Learned Today About ActionView
by Erik Runyon on January 6, 2009
I ran across a couple of ActionView tidbits that were new to me, so I thought I’d share.