module ActiveModel::Dirty

def attribute_changed?(attr_name, **options)

Dispatch target for {*_changed?}[rdoc-label:method-i-2A_changed-3F] attribute methods.
def attribute_changed?(attr_name, **options)
  mutations_from_database.changed?(attr_name.to_s, **options)
end