The idea here is in Rails 3, within ActiveRecord::Base, you should not define the method after_find such as:
def after_find do_some_thing end Instead, you should do: after_find :my_after_find_method def my_after_find_method do_some_thing end Somehow they failed to mention such a simple thing in the API Document. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

