module ActiveModel::Dirty

def attribute_previous_change(attr)

Handles *_previous_change for +method_missing+.
def attribute_previous_change(attr)
  previous_changes[attr] if attribute_previously_changed?(attr)
end