Monkey patch field_changed? support until CPK is updated

This commit is contained in:
Tom Hughes 2012-11-12 19:14:31 +00:00
parent dee70e8daa
commit 9bc3196dee

View file

@ -0,0 +1,9 @@
# We need to restore field_changed? support until CPK is updated
module ActiveRecord
module AttributeMethods
module Dirty
private
alias_method :field_changed?, :_field_changed?
end
end
end