Module: ActiveRecord::LegacyYamlAdapter::Rails41
- Defined in:
- lib/active_record/legacy_yaml_adapter.rb
Class Method Summary collapse
Class Method Details
.convert(klass, coder) ⇒ Object
36 37 38 39 40 41 42 43 44 45 |
# File 'lib/active_record/legacy_yaml_adapter.rb', line 36 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 |