restore_attribute!(attr)
Handle restore_*! for method_missing.
# File activemodel/lib/active_model/dirty.rb, line 250 def restore_attribute!(attr) if attribute_changed?(attr) __send__("#{attr}=", changed_attributes[attr]) clear_attribute_changes([attr]) end end