Skip to content

Instantly share code, notes, and snippets.

@mbj
Last active August 29, 2015 14:01
Show Gist options
  • Save mbj/462f3ad67c6664ecd708 to your computer and use it in GitHub Desktop.
Save mbj/462f3ad67c6664ecd708 to your computer and use it in GitHub Desktop.
module Other
end
module Foo
module Other
end
module Bar
def x
Other # Looked up to Foo::Other
end
end
end
module Foo::Bar
def x
Other # Looked up to ::Other
end
end
module Foo
module Bar
def x
mutated
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment