module ActiveRecord::Store::ClassMethods
def _store_accessors_module
def _store_accessors_module @_store_accessors_module ||= begin mod = Module.new include mod mod end end
def store(store_attribute, options = {})
def store(store_attribute, options = {}) serialize store_attribute, IndifferentCoder.new(options[:coder]) store_accessor(store_attribute, options[:accessors]) if options.has_key? :accessors end
def store_accessor(store_attribute, *keys)
def store_accessor(store_attribute, *keys) keys = keys.flatten _store_accessors_module.module_eval do keys.each do |key| define_method("#{key}=") do |value| write_store_attribute(store_attribute, key, value) end define_method(key) do read_store_attribute(store_attribute, key) end end end self.stored_attributes[store_attribute] ||= [] self.stored_attributes[store_attribute] |= keys end