Last active
May 24, 2017 19:16
-
-
Save dvandersluis/8b68673d2b11c8232029d3d7c3d8194c to your computer and use it in GitHub Desktop.
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 A | |
def foo | |
'hello' | |
end | |
alias_method :bar, :foo | |
end | |
class B < A | |
def foo | |
'bye' | |
end | |
end | |
b = B.new | |
b.bar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The puzzle is how to make
b.bar
return'bye'
without adding the alias to classB
, or definingbar
onB
.