Skip to content

Instantly share code, notes, and snippets.

@sbellware
Created September 22, 2010 13:46
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/591695 to your computer and use it in GitHub Desktop.
Save sbellware/591695 to your computer and use it in GitHub Desktop.
class BusinessEvent
def self.inherited(clazz)
subclasses << clazz
end
def self.subclasses
@@subclasses ||= []
end
end
class OrderEvent < BusinessEvent
end
class PurchaseEvent < BusinessEvent
end
class CustomerEvent < BusinessEvent
end
puts BusinessEvent.subclasses.inspect
# => [OrderEvent, PurchaseEvent, CustomerEvent]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment