method
change_to_attribute
rails latest stable - Class:
ActiveModel::ForcedMutationTracker
change_to_attribute(attr_name)public
No documentation available.
# File activemodel/lib/active_model/attribute_mutation_tracker.rb, line 101
def change_to_attribute(attr_name)
if finalized_changes&.include?(attr_name)
finalized_changes[attr_name].dup
else
super
end
end