>>>>> "T" == Tomasz Wegrzanowski <taw / users.sourceforge.net> writes: T> Where does this message come from and how can I overload this: T> NameError: uninitialized constant Bar at Foo The constant Foo::Bar don't exist pigeon% ruby -e 'module Foo Bar = Class.new; end; p Foo::Bar.new' #<Foo::Bar:0x401b0aa4> pigeon% Guy Decoux