Skip to content

Instantly share code, notes, and snippets.

@dummey
Last active December 11, 2015 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dummey/4563204 to your computer and use it in GitHub Desktop.
Save dummey/4563204 to your computer and use it in GitHub Desktop.
module A
def foo1; end
end
class Klass
include A
end
module B
def foo2; end
end
module A
include B
def foo3; end
end
p Klass.instance_methods.include? :foo2
#has foo1 and foo3, but not foo2
class Klass2
include A
end
p Klass2.instance_methods.include? :foo2
#has foo1, foo2, and foo3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment