Skip to content

Instantly share code, notes, and snippets.

@maknz
Last active August 29, 2015 14:21
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 maknz/1d3c80d1b05b5316b075 to your computer and use it in GitHub Desktop.
Save maknz/1d3c80d1b05b5316b075 to your computer and use it in GitHub Desktop.
Namespacing example
module Foo
module Bar
class A; end
end
module Baz
module Bar
class B < ::Foo::Bar::A; end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment