When I start rails with:
$ rails s
I get:
/Users/snowcrash/.rvm/gems/ruby-2.1.5@global/gems/bundler-1.3.5/lib/bundler/spec_set.rb:92:in `block in materialize': Could not find rake-10.4.2 in any of the sources (Bundler::GemNotFound)
So, I ran bundle install
:
$ bundle install
Using rake 10.4.2
but gem list rake
gives:
*** LOCAL GEMS ***
rake (10.1.0, 10.0.4)
How come I don't have rake 10.4.2
installed?
Also, when I run bundle check
it gives me:
The Gemfile's dependencies are satisfied
which does not seem to be correct. Why?
==== UPDATE
I fixed the problem with rake
by doing:
gem install rake
but why did I have to install it manually? I thought that was Bundler's job.
And trying to start rails again gave me another problem:
Could not find multi_json-1.10.1 in any of the sources (Bundler::GemNotFound)
Clearly there's some underlying problem here. Any suggestions?