Reputation: 397
I tried to rails server
= Could not find rake-12.0.0 in any of the sources Run bundle install to install missing gems.
I tried to bundle update/ install
It goes to the error msg below .
Upvotes: 0
Views: 814
Reputation: 390
Follow this step:
gem install rack
bundle update rake
for updating your Gemfile.lock file.bundle install
.Upvotes: 0
Reputation: 3018
Try changing your Gemfile
line from source 'https://rubygems.org'
to source 'http://rubygems.org'
Upvotes: 1