method

normalize_changed_in_place_attributes

rails latest stable - Class: ActiveModel::Attributes::Normalization

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

normalize_changed_in_place_attributes()
private

No documentation available.

# File activemodel/lib/active_model/attributes/normalization.rb, line 140
        def normalize_changed_in_place_attributes
          self.class.normalized_attributes.each do |name|
            normalize_attribute(name) if attribute_changed_in_place?(name)
          end
        end