Skip to content

Instantly share code, notes, and snippets.

@dvandersluis
Last active May 24, 2017 19:16
Show Gist options
  • Save dvandersluis/8b68673d2b11c8232029d3d7c3d8194c to your computer and use it in GitHub Desktop.
Save dvandersluis/8b68673d2b11c8232029d3d7c3d8194c to your computer and use it in GitHub Desktop.
class A
def foo
'hello'
end
alias_method :bar, :foo
end
class B < A
def foo
'bye'
end
end
b = B.new
b.bar
@dvandersluis
Copy link
Author

dvandersluis commented May 24, 2017

The puzzle is how to make b.bar return 'bye' without adding the alias to class B, or defining bar on B.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment