Merge pull request #4904 from ask4prasath/refactor_dirty_module_with_helper

Changing active model dirty module helper method to more appropriate met...
This commit is contained in:
José Valim 2012-03-28 23:47:12 -07:00
commit e83e76eca4
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
require 'active_model/attribute_methods'
require 'active_support/hash_with_indifferent_access'
require 'active_support/core_ext/object/duplicable'
require 'active_support/core_ext/object/blank'
module ActiveModel
# == Active Model Dirty
@ -98,7 +99,7 @@ module ActiveModel
# person.name = 'bob'
# person.changed? # => true
def changed?
changed_attributes.any?
changed_attributes.present?
end
# List of attributes with unsaved changes.