instance method
inherited
Ruby on Rails 3.0.20
Since v2.2.3 Last seen in v3.2.22.5Signature
inherited(subclass)
Notify observers when the observed class is subclassed.
Parameters
-
subclassreq
Source
# File activemodel/lib/active_model/observing.rb, line 75
def inherited(subclass)
super
notify_observers :observed_class_inherited, subclass
end
Defined in activemodel/lib/active_model/observing.rb line 75
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveModel::Observing::ClassMethods