method
attributes_changed_in_place
v4.2.9 -
Show latest stable
- Class:
ActiveRecord::AttributeMethods::Dirty
attributes_changed_in_place()private
No documentation available.
# File activerecord/lib/active_record/attribute_methods/dirty.rb, line 146
def attributes_changed_in_place
changed_in_place.each_with_object({}) do |attr_name, h|
orig = @attributes[attr_name].original_value
h[attr_name] = orig
end
end