Error Could Not Find I18N-0.7.0 in Any of The Sources

error Could not find i18n-0.7.0 in any of the sources

I solved the problem.

The problem was, I upgraded the Rails version but I did not upgrade the bin/ folder.

So, to do that, I had to run the following command, and override everything:

$ bundle exec rake rails:update:bin

Thanks.

Could not find i18n-0.6.0 in any of the sources

I had exactly the same error. Are you using rvm and passenger?

If you had rvm installed before starting passenger installation, after passenger finishes its installation it gives you the instructions for updating apache configuration with something similar to:

LoadModule passenger_module /usr/local/rvm/gems/ruby-1.9.3-p125@global/gems/passenger-3.0.11/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/rvm/gems/ruby-1.9.3-p125@global/gems/passenger-3.0.11
PassengerRuby /usr/local/rvm/wrappers/ruby-1.9.3-p125@global/ruby

I've installed passenger with global gemset but later I created another gemset which I used for my app (let's call this new gemset 'foo').

The solution that worked for me was to change 'global' to 'foo' in the 3rd line:

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

How to solve Could not find i18n-0.6.5 in any of the sources (Bundler::GemNotFound) AWS deploy

The problem was solved using the following:

 bundle pack
bundle install --path vendor/cache

I got the answer from this :
Installing Gems with Bundler == Big problem

Hope it helps someone with the same issue.



Related Topics



Leave a reply



Submit