Skip to content

Instantly share code, notes, and snippets.

@leejarvis

leejarvis/blah Secret

Created February 19, 2014 19:31
Show Gist options
  • Save leejarvis/142fbbb0406dba9502c9 to your computer and use it in GitHub Desktop.
Save leejarvis/142fbbb0406dba9502c9 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
module M1
def foo
p 'M1'
end
end
module M2
def foo
p 'M2'
end
end
class MyClass
include M1
alias_method :bar, :foo
include M2
end
klass = MyClass.new
klass.foo #=> M2
klass.bar #=> M1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment