Class: Class

Inherits:
Object
  • Object
show all
Defined in:
lib/core_ext/class.rb

Overview

Instance Method Summary collapse

Instance Method Details

#descendantsObject

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