get list of all childs inhereted from self class.
get list of all childs inhereted from self class
33 34 35
# File 'lib/rubimc/ruby_classes.rb', line 33 def descendants ObjectSpace.each_object(Class).select { |klass| klass < self } end