質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.50%
Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

Q&A

1回答

5324閲覧

Rails にて,bundle install を実行しようとすると、エラーが出てしまいます。

kanjin

総合スコア8

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

0グッド

0クリップ

投稿2016/06/25 07:55

編集2022/01/12 10:55

###前提・実現したいこと
Railsを使用して、アプリを作成しようとしているのですが、エラーが発生してしまいます。
ターミナル上で、bundle installを実行しようとすると以下の表示が出ます。
###発生している問題・エラーメッセージ
Fetching gem metadata from https://rubygems.org/
Fetching version metadata from https://rubygems.org/
Fetching dependency metadata from https://rubygems.org/
Resolving dependencies...
Bundler could not find compatible versions for gem "sprockets":
In snapshot (Gemfile.lock):
sprockets (= 3.6.2)

In Gemfile:
sass-rails (~> 4.0.2) was resolved to 4.0.2, which depends on
sprockets (<= 2.11.0, ~> 2.8)

web-console (~> 2.0) was resolved to 2.3.0, which depends on sprockets-rails (< 4.0, >= 2.0) was resolved to 3.0.4, which depends on sprockets (>= 3.0.0)

Running bundle update will rebuild your snapshot from scratch, using only
the gems in your Gemfile, which may resolve the conflict.

###該当のソースコード
Rails
ここにご自身が実行したソースコードを書いてください
bundle install

###試したこと
課題に対してアプローチしたことを記載してください

###補足情報(言語/FW/ツール等のバージョンなど)
より詳細な情報

回答ありがとうございます。

rubyのバージョンは以下の様になっています。
ruby 2.1.3p242 (2014-09-19 revision 47630) [x86_64-darwin15.0]

これがGemfileの中身です。

source 'https://rubygems.org'

Bundle edge Rails instead: gem 'rails', github: 'rails/rails'

gem 'rails', '4.2.6'

Use mysql as the database for Active Record

gem 'mysql2', '0.3.18',

Use SCSS for stylesheets

gem 'sass-rails', '~> 4.0.2'

Use Uglifier as compressor for JavaScript assets

gem 'uglifier', '>= 1.3.0'

Use CoffeeScript for .coffee assets and views

gem 'coffee-rails', '~> 4.1.0'

See https://github.com/rails/execjs#readme for more supported runtimes

gem 'therubyracer', platforms: :ruby

Use jquery as the JavaScript library

gem 'jquery-rails'

Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks

gem 'turbolinks'

Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder

gem 'jbuilder', '~> 2.0'

bundle exec rake doc:rails generates the API under doc/api.

gem 'sdoc', '~> 0.4.0', group: :doc

Use ActiveModel has_secure_password

gem 'bcrypt', '~> 3.1.7'

Use Unicorn as the app server

gem 'unicorn'

Use Capistrano for deployment

gem 'capistrano-rails', group: :development

group :development, :test do

Call 'byebug' anywhere in the code to stop execution and get a debugger console

gem 'byebug'
end

group :development do

Access an IRB console on exception pages or by using <%= console %> in views

gem 'web-console', '~> 2.0'

Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring

gem 'spring'
end

gem 'pry-rails'
gem 'compass-rails', '~> 2.0'
gem 'sprockets' , '2.11.0'

申し訳ございませんが、よろしくお願いします。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

raccy

2016/06/25 12:12

"Gemfile"の中身やRubyのバージョン(ruby -vの結果)などがあると、何かわかるかも知れません。もしよろしければ、質問に追記してください。
kanjin

2016/06/28 06:06

raccy様 ご回答ありがとうございます。 ご指摘の内容を追記しました。申し訳ございませんが、ご教授よろしくお願いいたします。
guest

回答1

0

ご使用の「gem」のバージョンの整合性が取れていないためのエラーのようですが、メッセージに示さてれいるように bundle update を実行しても改善しませんか?

投稿2016/06/25 09:08

pi-chan

総合スコア5936

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

kanjin

2016/06/25 09:13

回答本当にありがとうございます。 ターミナル上にて、bundle updateを実行したのですが、以前エラー表示が発生します。 エラー表示は以下のようになっています。 bundle update [!] There was an error parsing `Gemfile`: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' - gem 'sass-rails', '~> 4.0.2' ^ /Users/hiroto/projects/domesday/Gemfile:9: syntax error, unexpected ',', expecting end-of-input gem 'sass-rails', '~> 4.0.2' ^. Bundler cannot continue. # from /Users/hiroto/projects/domesday/Gemfile:9 # ------------------------------------------- # # Use SCSS for stylesheets > gem 'sass-rails', '~> 4.0.2' # # Use Uglifier as compressor for JavaScript assets # -------------------------------------------
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだベストアンサーが選ばれていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.50%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問