Skip to content

Instantly share code, notes, and snippets.

@nusco
Created August 18, 2010 14:56
Show Gist options
  • Save nusco/534994 to your computer and use it in GitHub Desktop.
Save nusco/534994 to your computer and use it in GitHub Desktop.
Spell: Hook Method
# ==================
# Spell: Hook Method
# ==================
# Override a method to intercept object model events.
$INHERITORS = []
class C
def self.inherited(subclass)
$INHERITORS << subclass
end
end
class D < C
end
class E < C
end
class F < E
end
$INHERITORS # => [D, E, F]
# For more information: http://www.pragprog.com/titles/ppmetr/metaprogramming-ruby
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment