123456789_123456789_123456789_123456789_123456789_

Class: ActiveRecord::Store::StringKeyedHashAccessor

Do not use. This class is for internal use only.
Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, HashAccessor
Instance Chain:
self, HashAccessor
Inherits: ActiveRecord::Store::HashAccessor
Defined in: activerecord/lib/active_record/store.rb

Class Method Summary

Class Method Details

.read(object, attribute, key)

[ GitHub ]

  
# File 'activerecord/lib/active_record/store.rb', line 240

def self.read(object, attribute, key)
  super object, attribute, key.to_s
end

.write(object, attribute, key, value)

[ GitHub ]

  
# File 'activerecord/lib/active_record/store.rb', line 244

def self.write(object, attribute, key, value)
  super object, attribute, key.to_s, value
end