dangerousdave
dangerousdave

Reputation: 6408

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

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?

Upvotes: 1

Views: 3889

Answers (1)

mpapis
mpapis

Reputation: 53158

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/

Upvotes: 3

Related Questions