Skip to content

Instantly share code, notes, and snippets.

@scudco
Created February 18, 2009 18:29
Show Gist options
  • Save scudco/66460 to your computer and use it in GitHub Desktop.
Save scudco/66460 to your computer and use it in GitHub Desktop.
module Foo
const_set "Some", Module.new do
module Boo;end
end
end
puts Foo::Some # => Foo::Some
puts Foo::Some::Boo # => foo.rb:9: uninitialized constant Foo::Some::Boo (NameError)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment