Snowcrash
Snowcrash

Reputation: 86187

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

Opened up a Rails project I haven't coded in a while and I just tried starting up the Rails server with:

`rails s`

and I get this error message:

.rvm/gems/ruby-2.0.0-p195@global/gems/bundler-1.3.5/lib/bundler/spec_set.rb:92:in `block in materialize': Could not find i18n-0.6.4 in any of the sources (Bundler::GemNotFound)

Fwiw, I've done a bundle install and here's what I get when I check i18n:

$ gem list i18n

*** LOCAL GEMS ***

i18n (0.6.5)

Any idea what the problem is and how it should be fixed?

Upvotes: 0

Views: 979

Answers (2)

valk
valk

Reputation: 9884

In case your rails gem is in the Gemfile, you should run

bundle exec rails s

instead. HTH.

Upvotes: 1

Seyon
Seyon

Reputation: 491

There may be an issue with how you installed RVM.

Try calling gem list and see if it's mentioned anywhere there. There's a Rails guide to internationalization API. It may contain useful information if reintalling RVM doesn't fix anything

http://guides.rubyonrails.org/i18n.html

Upvotes: 0

Related Questions