Class: Roebe::Parent

Inherits:
Object show all
Defined in:
lib/roebe/snippets/obtain_all_descendants.rb

Direct Known Subclasses

Child

Class Method Summary collapse

Class Method Details

.descendantsObject



10
11
12
13
14
# File 'lib/roebe/snippets/obtain_all_descendants.rb', line 10

def self.descendants
  ObjectSpace.each_object(Class).select { |klass|
    klass < self # Select the subclasses there.
  }
end