Class: NoBrainer::Document::Store::StringKeyedHashAccessor
- Inherits:
-
HashAccessor
- Object
- HashAccessor
- NoBrainer::Document::Store::StringKeyedHashAccessor
- Defined in:
- lib/no_brainer/document/store.rb
Overview
:nodoc:
Class Method Summary collapse
Methods inherited from HashAccessor
Class Method Details
.read(object, attribute, key) ⇒ Object
264 265 266 |
# File 'lib/no_brainer/document/store.rb', line 264 def self.read(object, attribute, key) super object, attribute, key.to_s end |
.write(object, attribute, key, value) ⇒ Object
268 269 270 |
# File 'lib/no_brainer/document/store.rb', line 268 def self.write(object, attribute, key, value) super object, attribute, key.to_s, value end |