From: Nobuyoshi Nakada Date: 2011-09-02T10:05:51+09:00 Subject: [ruby-core:39229] [Ruby 1.9 - Bug #5264][Feedback] Commit 33157 Issue #5264 has been updated by Nobuyoshi Nakada. Status changed from Open to Feedback ruby -v changed from ruby 1.9.4dev (2011-09-01 trunk 33153) [x86_64-linux] to r33157 Simplified code doesn't reproduce it. class Redis; class Store < self; module Namespace; end; end; end Is "Namespace" constant defined elsewhere at that point? ---------------------------------------- Bug #5264: Commit 33157 http://redmine.ruby-lang.org/issues/5264 Author: Charlie Savage Status: Feedback Priority: Normal Assignee: Category: core Target version: 1.9.3 ruby -v: r33157 It appears this commit: https://github.com/ruby/ruby/commit/43284b6bf8324a762808537d5cd2c0774b662a84 Breaks our test suite, with this error from the redis namespace gem. Here is a trackeback from our Rails app: Namespace is not a module /usr/lib/ruby/gems/1.9.1/bundler/gems/redis-store-b70b9326d083/lib/redis/store/namespace.rb:3:in `' /usr/lib/ruby/gems/1.9.1/bundler/gems/redis-store-b70b9326d083/lib/redis/store/namespace.rb:2:in `' /usr/lib/ruby/gems/1.9.1/bundler/gems/redis-store-b70b9326d083/lib/redis/store/namespace.rb:1:in `' /usr/lib/ruby/gems/1.9.1/gems/activesupport-3.1.0/lib/active_support/dependencies.rb:240:in `require' /usr/lib/ruby/gems/1.9.1/gems/activesupport-3.1.0/lib/active_support/dependencies.rb:240:in `block in require' /usr/lib/ruby/gems/1.9.1/gems/activesupport-3.1.0/lib/active_support/dependencies.rb:223:in `block in load_dependency' /usr/lib/ruby/gems/1.9.1/gems/activesupport-3.1.0/lib/active_support/dependencies.rb:640:in `new_constants_in' /usr/lib/ruby/gems/1.9.1/gems/activesupport-3.1.0/lib/active_support/dependencies.rb:223:in `load_dependency' /usr/lib/ruby/gems/1.9.1/gems/activesupport-3.1.0/lib/active_support/dependencies.rb:240:in `require' /usr/lib/ruby/gems/1.9.1/bundler/gems/redis-store-b70b9326d083/lib/redis-store.rb:6:in `' Line 6 in redis-store.rb is: require "redis/store/namespace" And then the top of namespace looks like this: class Redis class Store < self module Namespace Not sure if this is an intentional change or not, but a heads up its breaks the gem. Thanks - Charlie Note the ruby -v version attached to the ticket isn't the one I used for testing. -- http://redmine.ruby-lang.org