Methods
R
W
Class Public methods
read(object, attribute, key)
# File activerecord/lib/active_record/store.rb, line 146
def self.read(object, attribute, key)
  super object, attribute, key.to_s
end
write(object, attribute, key, value)
# File activerecord/lib/active_record/store.rb, line 150
def self.write(object, attribute, key, value)
  super object, attribute, key.to_s, value
end