class method
self.descendants
Ruby on Rails 3.2.22.5
Since v3.0.20Signature
self.descendants(klass)
No documentation comment.
Parameters
-
klassreq
Source
# File activesupport/lib/active_support/descendants_tracker.rb, line 11
def self.descendants(klass)
@@direct_descendants[klass].inject([]) do |descendants, _klass|
descendants << _klass
descendants.concat _klass.descendants
end
end
Defined in activesupport/lib/active_support/descendants_tracker.rb line 11
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::DescendantsTracker