method
attribute_changed_in_place?
v4.2.9 -
Show latest stable
- Class:
ActiveRecord::AttributeMethods::Dirty
attribute_changed_in_place?(attr_name)public
No documentation available.
# File activerecord/lib/active_record/attribute_methods/dirty.rb, line 73
def attribute_changed_in_place?(attr_name)
old_value = original_raw_attribute(attr_name)
@attributes[attr_name].changed_in_place_from?(old_value)
end