I am upgrading a rails3.0 app to rails3.1.10 I have model
class User < ActiveRecord::Base
belongs_to :account
.....
def some_method
return unless self.account.updated?
.......
end
end
but .updated?
method seems to be removed from Rails3.1.10
Is there any alternatives to it?
What I need is to track if parent object was changed
thanks