Class: ActiveEntity::Store::StringKeyedHashAccessor
- Inherits:
-
HashAccessor
- Object
- HashAccessor
- ActiveEntity::Store::StringKeyedHashAccessor
- Defined in:
- lib/active_entity/store.rb
Overview
:nodoc:
Class Method Summary collapse
Methods inherited from HashAccessor
Class Method Details
.read(object, attribute, key) ⇒ Object
241 242 243 |
# File 'lib/active_entity/store.rb', line 241 def self.read(object, attribute, key) super object, attribute, key.to_s end |
.write(object, attribute, key, value) ⇒ Object
245 246 247 |
# File 'lib/active_entity/store.rb', line 245 def self.write(object, attribute, key, value) super object, attribute, key.to_s, value end |