Skip to content

Instantly share code, notes, and snippets.

@sbellware
Created September 22, 2010 13:46
Show Gist options
  • Select an option

  • Save sbellware/591695 to your computer and use it in GitHub Desktop.

Select an option

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