Module: ActiveRecord::LegacyYamlAdapter::Rails41

Defined in:
lib/active_record/legacy_yaml_adapter.rb

Overview

:nodoc:

Class Method Summary collapse

Class Method Details

.convert(klass, coder) ⇒ Object



40
41
42
43
44
45
46
47
48
49
# File 'lib/active_record/legacy_yaml_adapter.rb', line 40

def self.convert(klass, coder)
  attributes = klass.attributes_builder
    .build_from_database(coder["attributes"])
  new_record = coder["attributes"][klass.primary_key].blank?

  {
    "attributes" => attributes,
    "new_record" => new_record,
  }
end