I have the following.
class Page < ActiveRecord::Base belongs_to :category serialize :fields end
The value of fields wi
fields
Use OpenStruct. It works like this:
require 'ostruct' struct = OStruct.new("address" => "8 finance street, hong kong", "founded" => "1973") struct.address # => 8 struct.founded # => "1973"