Created
May 17, 2012 16:29
-
-
Save lmarburger/2720007 to your computer and use it in GitHub Desktop.
Possible for a module included somewhere to override a class's instance method?
This file contains 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 Base | |
def call | |
'call' | |
end | |
end | |
p Base.new.call #=> "call" | |
# Monkeypatching "works" but doesn't provide access to #super | |
class Base | |
def call | |
'monkeypatched' | |
end | |
end | |
p Base.new.call #=> "monkeypatched" | |
# This is the spirit of what I'd like, but methods defined on the class will be | |
# preferred over those in ancestors. | |
module Override | |
def call | |
[ 'overridden', super ] | |
end | |
end | |
class Base | |
include Override | |
end | |
p Base.new.call #=> "monkeypatched" | |
# This works but I don't have access to the class instances to apply this method. | |
instance = Base.new | |
class << instance | |
def call | |
[ 'overridden', super ] | |
end | |
end | |
p instance.call #=> ["overridden", "monkeypatched"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No you're right. I forgot to include that in my gist. That works too but I was hoping for a better approach that provides access to
#super
and avoids thealias_method_chain
nightmare.