Flowdock
method

record_attribute_changed_in_place?

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: ActiveModel::Validations::NumericalityValidator
record_attribute_changed_in_place?(record, attr_name) private

No documentation

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

Hide source
# File activemodel/lib/active_model/validations/numericality.rb, line 96
      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
Register or log in to add new notes.