This project is archived and is in readonly mode.

#812 ✓committed
Tim Haines

_changed? doesn't work for attribute aliases

Reported by Tim Haines | August 13th, 2008 @ 12:21 AM | in 2.x

If you define an attribute alias like so:

alias_attribute :name_for_cache, :name

Then run the following:

u.name = "bob" => "bob" u.name_changed? => true u.name_for_cache_changed? NoMethodError: undefined method name_for_cache_changed?' for #<User:0x12b25b8>

    from /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/attribute_methods.rb:251:in `method_missing'
    from (irb):4

It seems like the alias_attribute could define the _changed? method also.

As a work around, I'm also aliasing _changed:

alias_attribute :name_for_cache_changed, :name_changed

Comments and changes to this ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile »

<h2 style="font-size: 14px">Tickets have moved to Github</h2>

The new ticket tracker is available at <a href="https://github.com/rails/rails/issues">https://github.com/rails/rails/issues</a>

Referenced by

Pages