mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
5dc3f91832
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8118 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
12 lines
No EOL
343 B
Text
12 lines
No EOL
343 B
Text
Changes from extracting bits to ActiveModel
|
|
|
|
* ActiveModel::Observer#add_observer!
|
|
|
|
It has a custom hook to define after_find that should really be in a
|
|
ActiveRecord::Observer subclass:
|
|
|
|
def add_observer!(klass)
|
|
klass.add_observer(self)
|
|
klass.class_eval 'def after_find() end' unless
|
|
klass.respond_to?(:after_find)
|
|
end |