Skip to content

Instantly share code, notes, and snippets.

@knapo
Last active July 28, 2021 09:34
Show Gist options
  • Save knapo/d21070a00e870626087516530dd4cfda to your computer and use it in GitHub Desktop.
Save knapo/d21070a00e870626087516530dd4cfda to your computer and use it in GitHub Desktop.
class_ext_infinite_loop.rb
class Foo
def bar
puts 'bar'
end
end
module FooExt
def bar
puts 'ext bar'
super
end
end
Foo.prepend(FooExt)
class Foo
alias orig_bar bar
def bar
puts 'orig_bar'
orig_bar
end
end
Foo.new.bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment