method
record_attribute_changed_in_place?
v7.2.3 -
Show latest stable
- Class:
ActiveModel::Validations::NumericalityValidator
record_attribute_changed_in_place?(record, attr_name)private
No documentation available.
# File activemodel/lib/active_model/validations/numericality.rb, line 143
def record_attribute_changed_in_place?(record, attr_name)
record.respond_to?(:attribute_changed_in_place?) &&
record.attribute_changed_in_place?(attr_name.to_s)
end