I would like to know if it is possible to call a method from a model after using find.
Something like after_save, but after_find.
after_save
after_find
T
Nowadays ((26.04.2012) this is proper way (and working!) to do that:
class SomeClass < ActiveRecord::Base after_find :do_something def do_something # code end end