Flowdock
method

attributes_changed_in_place

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: ActiveRecord::AttributeMethods::Dirty
attributes_changed_in_place() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.