Skip to content

Instantly share code, notes, and snippets.

@shugo
Created August 3, 2012 16:12
Show Gist options
  • Save shugo/3249081 to your computer and use it in GitHub Desktop.
Save shugo/3249081 to your computer and use it in GitHub Desktop.
module M
def foo
p M
super
end
alias bar foo
end
class Base
def foo
p Base
end
end
class Derived < Base
include M
end
Derived.new.foo
Derived.new.bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment