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
HashAccessor
- Inherited
Class Method Details
.read(object, attribute, key)
[ GitHub ]# File 'activerecord/lib/active_record/store.rb', line 244
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 248
def self.write(object, attribute, key, value) super object, attribute, key.to_s, value end