Skip to content

Instantly share code, notes, and snippets.

@sbellware
Created September 22, 2010 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbellware/591707 to your computer and use it in GitHub Desktop.
Save sbellware/591707 to your computer and use it in GitHub Desktop.
class BusinessEvent
def self.subclasses
subclasses = []
ObjectSpace.each_object(Module) {|m| subclasses << m if m.ancestors.include? self and m != self}
subclasses
end
end
class OrderEvent < BusinessEvent
end
class PurchaseEvent < BusinessEvent
end
class CustomerEvent < BusinessEvent
end
puts BusinessEvent.subclasses.inspect
# => [CustomerEvent, PurchaseEvent, OrderEvent]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment