Why am I getting an error when requiring this gem in environment.rb?
I followed the steps here and installed the composite_primary_keys gem. When I try to require the gem in environment.rb at the very bottom of the file (after 'end') via
require 'composite_primary_keys'
I get this when starting the server
"69125"
=> Booting Mongrel
=> Rails 2.3.4 application starting on http://127.0.0.1:3002
/Library/Ruby/Site/1.8/rubygems.rb:270:in `activate': You have a nil object when you didn't expect it! (NoMethodError)
You might have expected an instance of Array.
The error occurred while evaluating nil.map
from /Library/Ruby/Site/1.8/rubygems.rb:296:in `activate'
from /Library/Ruby/Site/1.8/rubygems.rb:295:in `each'
from /Library/Ruby/Site/1.8/rubygems.rb:295:in `activate'
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:35:in `require'
from /path/to/www/vendor/rails/activesupport/lib/active_support/dependencies.rb:156:in `require'
from /path/to/www/vendor/rails/activesupport/lib/active_support/dependencies.rb:521:in `new_constants_in'
from /path/to/www/vendor/rails/activesupport/lib/active_support/dependencies.rb:156:in `require'
from /path/to/www/config/environment.rb:54
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
from /path/to/www/vendor/rails/activesupport/lib/active_support/dependencies.rb:156:in `require'
from /path/to/www/vendor/rails/activesupport/lib/active_support/dependencies.rb:521:in `new_constants_in'
from /path/to/www/vendor/rails/activesupport/lib/active_support/dependenci开发者_StackOverflow社区es.rb:156:in `require'
from /path/to/www/vendor/rails/railties/lib/commands/server.rb:84
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
from ./script/server:3
from -e:2:in `load'
from -e:2
Any idea why this is happening?
Try putting it in your environment.rb like this:
Rails::Initializer.run do |config|
config.gem 'composite_primary_keys'
end
精彩评论