Skip to content

Instantly share code, notes, and snippets.

Created March 29, 2012 08:52
Show Gist options
  • Save anonymous/c240fd797e8c6a1072c3 to your computer and use it in GitHub Desktop.
Save anonymous/c240fd797e8c6a1072c3 to your computer and use it in GitHub Desktop.
module A
class Bar
end
class Foo
def bar
# this works fine
Bar.new
end
end
end
A::Foo.new.bar
module B
end
class B::Bar
end
class B::Foo
def bar
# this does not work: uninitialized constant B::Foo::Bar
Bar.new
end
end
B::Foo.new.bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment