Skip to content

Instantly share code, notes, and snippets.

@enebo

enebo/alias4.rb Secret

Created February 14, 2022 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enebo/09b68423b763a2489a1139b02d319d9a to your computer and use it in GitHub Desktop.
Save enebo/09b68423b763a2489a1139b02d319d9a to your computer and use it in GitHub Desktop.
class One
def foo
puts "foo"
end
def bar
puts "bar"
end
end
class Two < One
def foo
super
end
alias :bar :foo
end
Two.new.bar
mri31 ../../snippets/alias4.rb
foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment