Ever had a need to store params in some more reliable way than putting it in the Active record session? You should check the params_persistance plugin.
Tag: Active Record
Serializing objects in Ruby on Rails
Ruby on Rails’ Active Record can serialize any object in text columns using YAML. So anytime you need to save an object to your database in your Rails application in a way that you could retrieve it as the same object later, you may use serialize.

