Skip to content

Instantly share code, notes, and snippets.

@drbrain
Created June 21, 2013 21:21
Show Gist options
  • Save drbrain/5834431 to your computer and use it in GitHub Desktop.
Save drbrain/5834431 to your computer and use it in GitHub Desktop.
module A
def a
p :A
end
end
module B
include A
def a
p :B
super
end
end
class C
include B
end
p A_ancestors: B.ancestors
p B_ancestors: B.ancestors
p C_ancestors: C.ancestors
C.new.a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment