Class: ActiveRecord::Store::IndifferentCoder

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

Overview

:nodoc:

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(coder_or_class_name) ⇒ IndifferentCoder

Returns a new instance of IndifferentCoder.



127
128
129
130
131
132
133
134
# File 'activerecord/lib/active_record/store.rb', line 127

def initialize(coder_or_class_name)
  @coder =
    if coder_or_class_name.respond_to?(:load) && coder_or_class_name.respond_to?(:dump)
      coder_or_class_name
    else
      ActiveRecord::Coders::YAMLColumn.new(coder_or_class_name || Object)
    end
end

Class Method Details

.as_indifferent_hash(obj) ⇒ Object



144
145
146
147
148
149
150
151
152
153
# File 'activerecord/lib/active_record/store.rb', line 144

def self.as_indifferent_hash(obj)
  case obj
  when ActiveSupport::HashWithIndifferentAccess
    obj
  when Hash
    obj.with_indifferent_access
  else
    ActiveSupport::HashWithIndifferentAccess.new
  end
end

Instance Method Details

#dump(obj) ⇒ Object



136
137
138
# File 'activerecord/lib/active_record/store.rb', line 136

def dump(obj)
  @coder.dump self.class.as_indifferent_hash(obj)
end

#load(yaml) ⇒ Object



140
141
142
# File 'activerecord/lib/active_record/store.rb', line 140

def load(yaml)
  self.class.as_indifferent_hash @coder.load(yaml)
end