Created
April 25, 2009 05:51
-
-
Save benschwarz/101518 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class A | |
def initialize(foo) | |
dispatch if respond_to? dispatch | |
end | |
end | |
class B < A | |
def dispatch | |
puts "called dispatch" | |
end | |
end | |
B.new | |
# respond_to? :dispatch returns true for B | |
# Dispatch is never called. | |
# I want multiple implementations of A subclasses to automagically call dispatch | |
# after init. THoughts? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment