Skip to content

Instantly share code, notes, and snippets.

@slawosz
Created October 15, 2013 17:10
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 slawosz/6995035 to your computer and use it in GitHub Desktop.
Save slawosz/6995035 to your computer and use it in GitHub Desktop.
module A
class Foo
def foo
puts 'foo'
end
end
end
module B
include A
end
B::Foo.ancestors # A::Foo is included
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment