Skip to content

Instantly share code, notes, and snippets.

@kirel
Created April 28, 2009 08:32
Show Gist options
  • Save kirel/103025 to your computer and use it in GitHub Desktop.
Save kirel/103025 to your computer and use it in GitHub Desktop.
class Foo
def foo
puts "parent"
end
end
class Foobar < Foo
def foo
puts "child"
super
end
end
module Bar
def foo
puts "module"
super
end
end
Foobar.new.extend(Bar).foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment