http://dev.rubyonrails.org/changeset/3981 ?!? The changes are a rename of RailsInfoController to Rails::InfoController. That seems to be completely unrelated to this error: $ ruby script\server => Booting WEBrick... ./script/../config/../vendor/rails/activesupport/lib/active_support/inflector.rb:121:in `underscore': stack level too deep (SystemStackError) from ./script/../config/../vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:26:in `underscore' from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:93:in `as_load_path' from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:92:in `collect' from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:92:in `as_load_path' from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:102:in `rake_original_const_missing' from C:/ruby/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1761:in `const_missing' from ./script/../config/../vendor/plugins/engines/lib/engines/dependencies_extensions.rb:35:in `require_or_load' from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:30:in `depend_on' ... 798 levels... from ./script/../config/../vendor/rails/railties/lib/commands/server.rb:34 from C:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require__' from C:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require' from script/server:3 What gives ? Anybody else has that ? Starting the console gives the same error. I can't start the server at r4007 either. Thanks for any info ! -- François Beausoleil http://blog.teksol.info/ _______________________________________________ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core
I have seen this error recently - have you updated to the latest version of Engines trunk? It stems from a recursive failure during the redefinition of require_or_load, because the Rails::VERSION module wasn''t already loaded. It should be fixed in the latest trunk. - james On 3/21/06, Francois Beausoleil <francois.beausoleil@gmail.com> wrote:> http://dev.rubyonrails.org/changeset/3981 > > ?!? > > The changes are a rename of RailsInfoController to > Rails::InfoController. That seems to be completely unrelated to this > error: > > $ ruby script\server > => Booting WEBrick... > ./script/../config/../vendor/rails/activesupport/lib/active_support/inflector.rb:121:in > `underscore'': stack level too deep (SystemStackError) > from ./script/../config/../vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb:26:in > `underscore'' > from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:93:in > `as_load_path'' > from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:92:in > `collect'' > from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:92:in > `as_load_path'' > from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:102:in > `rake_original_const_missing'' > from C:/ruby/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1761:in > `const_missing'' > from ./script/../config/../vendor/plugins/engines/lib/engines/dependencies_extensions.rb:35:in > `require_or_load'' > from ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:30:in > `depend_on'' > ... 798 levels... > from ./script/../config/../vendor/rails/railties/lib/commands/server.rb:34 > from C:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in > `require__'' > from C:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in > `require'' > from script/server:3 > > What gives ? Anybody else has that ? Starting the console gives the > same error. I can''t start the server at r4007 either. > > Thanks for any info ! > -- > François Beausoleil > http://blog.teksol.info/ > > _______________________________________________ > Rails-core mailing list > Rails-core@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails-core > > >-- * J * ~
Hello James, 2006/3/21, James Adam <james.adam@gmail.com>:> I have seen this error recently - have you updated to the latest > version of Engines trunk? It stems from a recursive failure during the > redefinition of require_or_load, because the Rails::VERSION module > wasn't already loaded. It should be fixed in the latest trunk.Ah yes, now that you mention it, that is the case: vendor/rails @ r4008 vendor/plugins/engines @ r309 vendor/plugins/login_engine @ r309 vendor/plugins/user_engine @ r309 Everything works now. Thanks ! -- François Beausoleil http://blog.teksol.info/ _______________________________________________ Rails-core mailing list Rails-core@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-core