method
clear_attribute_changes
rails latest stable - Class:
ActiveRecord::AttributeMethods::Dirty
clear_attribute_changes(attr_names)public
No documentation available.
# File activerecord/lib/active_record/attribute_methods/dirty.rb, line 91
def clear_attribute_changes(attr_names) # :nodoc:
super
attr_names.each do |attr_name|
clear_attribute_change(attr_name)
end
end