1
Could not find i18n-0.6.0 in any of the sources (Bundler::GemNotFound)

I am getting this error when trying to run redmine using Phusion Passenger under RVM on OSX Lion.

I have "redmine" and "global" RVM gemsets under Ruby 1.9.3. the "global" gemset contains the Passenger gem, other redmine specific gems are in the "redmine" gem set.

There are a lot of similar posts on stack overflow that deal with this (1,2,3), all with accepted answers, however I don't believe any of them are the "correct" solution.

How can I overcome this error while having Passenger installed in my global gemset please?

Community
  • 1
  • 1
dangerousdave
  • 6,331
  • 8
  • 45
  • 62

1 Answers1

3

Checking the first mentioned post there is most important part to use wrappers:

PassengerRuby /usr/local/rvm/wrappers/ruby-1.9.3-p125/ruby

the wrappers sets up proper environment for default ruby, for using gemsets follow rvm integration instructions: https://rvm.io/integration/passenger/

mpapis
  • 52,729
  • 14
  • 121
  • 158
  • This just bit me too, I don't know if other docs were off, but I was pointed at the ruby and not the wrapper. – DGM Jul 25 '13 at 16:18