I\'m a ruby/rails newbie.
Here is my gemfile:
source \'https://rubygems.org\' ruby \'2.0.0\' #ruby-gemset=railstutorial_rails_4_0 gem \'rails\', \'4.0.0
You should update the following line in your Gemfile:
gem 'rails', '4.0.0'
to
gem 'rails', '~> 4.0.0'
and then run bundle update.
bundle update