Class: Class
- Inherits:
-
Object
- Object
- Class
- Defined in:
- lib/core_ext/class.rb
Overview
Instance Method Summary collapse
-
#descendants ⇒ Object
Returns the descendants of the class.
Instance Method Details
#descendants ⇒ Object
Returns the descendants of the class.
4 5 6 |
# File 'lib/core_ext/class.rb', line 4 def descendants ObjectSpace.each_object(::Class).select {|klass| klass < self } end |