From: Thomas Sawyer Date: 2011-08-03T00:01:03+09:00 Subject: [ruby-core:38723] [Ruby 1.9 - Bug #5148][Open] Constant Namespace/Scoping in Dynamic Classes/Modules Issue #5148 has been reported by Thomas Sawyer. ---------------------------------------- Bug #5148: Constant Namespace/Scoping in Dynamic Classes/Modules http://redmine.ruby-lang.org/issues/5148 Author: Thomas Sawyer Status: Open Priority: Normal Assignee: Category: Target version: ruby -v: ruby 1.9.2 When defining a dynamic class or module, the constants defined within it are not kept within it's namespace, but are tied to the outer scope's namespace. c = Class.new do module M; end end #=> # c::M #=> M M #=> M This presents serious limitations in designing domain specific languages that take advantage of Ruby's class system. For instance in creating a test framework that uses blocks to defines testcases it is not possible to isolate fixture constants from those of other testcases. E.g. describe "fancy mixin" do class Foo include FancyMixin end ... end describe "unfancy mixin" do class Foo include UnfancyMixin end ... end Foo in the unfancy testcase will use Foo in the fancy testcase, causing unexpected issues --especially as these testcases may be defined in different files and coded by different people. -- http://redmine.ruby-lang.org