instance method
inherited
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
inherited(subclass)
Notify observers when the observed class is subclassed.
Parameters
-
subclassreq
Source
# File activerecord/lib/active_record/observer.rb, line 49
def inherited(subclass)
super
changed
notify_observers :observed_class_inherited, subclass
end
Defined in activerecord/lib/active_record/observer.rb line 49
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Observing::ClassMethods