Class: ActiveRecord::Store::StringKeyedHashAccessor

Inherits:
HashAccessor show all
Defined in:
activerecord/lib/active_record/store.rb

Overview

:nodoc:

Class Method Summary collapse

Methods inherited from HashAccessor

prepare

Class Method Details

.read(object, attribute, key) ⇒ Object



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

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

.write(object, attribute, key, value) ⇒ Object



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

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