前提・実現したいこと
railsチュートリアル1章の環境構築のところでつまづきました。リンク内容
手順に沿ってrailsをインストールした後、gemfileでバージョンを指定してbundle installしました。
そしてrails serverをターミナルで実行すると下記のようなエラーが出ました。
発生している問題・エラーメッセージ
/home/ec2-user/.rvm/gems/ruby-2.6.3/gems/activesupport-4.2.2/lib/active_support/core_ext/numeric/conversions.rb:131:in `block (2 levels) in <class:Numeric>': stack level too deep (SystemStackError)
該当のソースコード
Gemfile
1source 'https://rubygems.org' 2 3 4# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' 5gem 'rails', '4.2.2' 6 7# Use SCSS for stylesheets 8gem 'sass-rails', '5.0.2' 9# Use Uglifier as compressor for JavaScript assets 10gem 'uglifier', '2.5.3' 11# Use CoffeeScript for .coffee assets and views 12gem 'coffee-rails', '4.1.0' 13# See https://github.com/rails/execjs#readme for more supported runtimes 14# gem 'therubyracer', platforms: :ruby 15 16# Use jquery as the JavaScript library 17gem 'jquery-rails', '4.0.3' 18# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks 19gem 'turbolinks', '2.3.0' 20# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder 21gem 'jbuilder', '2.2.3' 22# bundle exec rake doc:rails generates the API under doc/api. 23gem 'sdoc', '0.4.0', group: :doc 24 25# Use ActiveModel has_secure_password 26# gem 'bcrypt', '~> 3.1.7' 27 28# Use Unicorn as the app server 29# gem 'unicorn' 30 31# Use Capistrano for deployment 32# gem 'capistrano-rails', group: :development 33 34group :development, :test do 35 # Use sqlite3 as the database for Active Record 36 gem 'sqlite3', '1.3.9' 37 # Call 'byebug' anywhere in the code to stop execution and get a debugger console 38 gem 'byebug', '3.4.0' 39 40 # Access an IRB console on exception pages or by using <%= console %> in views 41 gem 'web-console', '2.0.0.beta3' 42 43 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring 44 gem 'spring', '1.1.3' 45end 46 47 48
試したこと
下記の手順でrailsのバージョンを変更して試してみようと思いましたがうまくいきませんでした。
1.gemfileのrailsのバージョンを'5.1.0'に変更
2.再度bundle installを実行
3.下記のエラーが出ました
Resolving dependencies...
Bundler could not find compatible versions for gem "activesupport":
In Gemfile:
jbuilder (= 2.2.3) was resolved to 2.2.3, which depends on
activesupport (>= 3.0.0, < 5)
rails (= 5.1.0) was resolved to 5.1.0, which depends on activesupport (= 5.1.0)
Bundler could not find compatible versions for gem "coffee-rails":
In Gemfile:
coffee-rails (= 4.1.0)
turbolinks (= 2.3.0) was resolved to 2.3.0, which depends on coffee-rails
補足情報(FW/ツールのバージョンなど)
AWS Cloud9
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。