Gemfileを編
Gemfileを以下のように編集時、最後尾などではなく、必ずgroup :development, :testというグループの中に記述します。
Gemfile
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails', '~> 4.0.0'
end
Gemfileの編集が完了したので、次にbundle installを実行します。