vote up 1 vote down star
1

Hi, since I updated ruby using Mac Ports (on Leopard) I have got several problems and I also had to reinstall gems. Now when I run Mongrel I keep getting the error "Missing these required gems" followed by the list of gems that I required in environment.rb but that gems seems to be correctly installed as I see running gem list. I think that rails is looking for a previous installation, but I don't know how to configure it to use the new ruby/gem path.

Thanks!

flag

5 Answers

vote up 1 vote down check

Try this at the Terminal, and see whether the paths are similar:

which ruby
which gem

I had a similar problem just the other week, and had to rename the original gem binary so it would find the MacPorts-installed one.

link|flag
$ which ruby /opt/local/bin/ruby $ which gem /opt/local/bin/gem – collimarco Feb 15 at 12:14
vote up 0 vote down

Are you sure the gem command is actually the one installed by MacPorts and not the included default from OSX?

link|flag
I think it's the one installed by MacPorts: typing "which gem" I get "/opt/local/bin/gem". It seems that rails doesn't use the same gems as the line command "gem".. – collimarco Feb 15 at 12:18
vote up 2 vote down

This railswiki-entry gives lots of insight into handling of multiple gem-repositories. Maybe you find a clue there that solves your problem. Hope it helps

http://wiki.rubyonrails.org/rails/pages/HowToUseMultipleGemRepositories

link|flag
vote up 0 vote down

You can force it to use a particular version of ruby with:

/path/to/ruby -S <command>

You could force your rails application to start using whichever version of ruby you want, you could also use this to run your gem list command and make sure you have the correct gems before you run rails.

link|flag
vote up 3 vote down

You should use :

  config.gem 'rspec', :lib => 'spec'
  config.gem 'rspec-rails', :lib => 'spec/rails'

because rspec libs are not named as it should ...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.