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

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

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

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

Ruby on Rails 4

Ruby on Rails4はRubyによって書かれたオープンソースのウェブフレームワークです。 Ruby on Railsは「設定より規約」の原則に従っており、効率的に作業を行うために再開発を行う必要をなくしてくれます。

Q&A

1回答

1649閲覧

bundle installができない

kyononstyle

総合スコア6

Ruby on Rails

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

Ruby on Rails 4

Ruby on Rails4はRubyによって書かれたオープンソースのウェブフレームワークです。 Ruby on Railsは「設定より規約」の原則に従っており、効率的に作業を行うために再開発を行う必要をなくしてくれます。

0グッド

0クリップ

投稿2018/09/01 03:22

Ruby on Rails4.2.6をインストールして、
そのあとbundle installをしようとしたのですが、実行されません。
どなたかお力添えお願いいたします。

エラー文

bundle install Fetching gem metadata from https://rubygems.org/........... Fetching gem metadata from https://rubygems.org/.. Resolving dependencies..... Using rake 12.3.1 Using concurrent-ruby 1.0.5 Using i18n 0.9.5 Fetching json 1.8.6 Installing json 1.8.6 with native extensions C:/Ruby23-x64/lib/ruby/site_ruby/2.3.0/bundler/build_metadata.rb:27:in ``': No such file or directory - git rev-parse --short HEAD (Errno::ENOENT) from C:/Ruby23-x64/lib/ruby/site_ruby/2.3.0/bundler/build_metadata.rb:27:in `block in git_commit_sha' from C:/Ruby23-x64/lib/ruby/site_ruby/2.3.0/bundler/build_metadata.rb:26:in `chdir' from C:/Ruby23-x64/lib/ruby/site_ruby/2.3.0/bundler/build_metadata.rb:26:in `git_commit_sha' from C:/Ruby23-x64/lib/ruby/site_ruby/2.3.0/bundler/build_metadata.rb:14:in `to_h' from C:/Ruby23-x64/lib/ruby/site_ruby/2.3.0/bundler/env.rb:18:in `report' from C:/Ruby23-x64/lib/ruby/site_ruby/2.3.0/bundler/friendly_errors.rb:96:in `request_issue_report_for' from C:/Ruby23-x64/lib/ruby/site_ruby/2.3.0/bundler/friendly_errors.rb:46:in `log_error' from C:/Ruby23-x64/lib/ruby/site_ruby/2.3.0/bundler/friendly_errors.rb:126:in `rescue in with_friendly_errors' from C:/Ruby23-x64/lib/ruby/site_ruby/2.3.0/bundler/friendly_errors.rb:122:in `with_friendly_errors' from C:/Ruby23-x64/lib/ruby/gems/2.3.0/gems/bundler-1.16.1/exe/bundle:22:in `<top (required)>' from C:/Ruby23-x64/bin/bundle:23:in `load' from C:/Ruby23-x64/bin/bundle:23:in `<main>'

ちなみに、Gemfileの中身は以下です。

source 'https://rubygems.org' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '4.2.6' # Use sqlite3 as the database for Active Record gem 'sqlite3' # Use SCSS for stylesheets gem 'sass-rails', '~> 5.0' # 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', '3.4.0' end group :development do # Access an IRB console on exception pages or by using <%= console %> in views gem 'web-console', '~> 2.0' end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Rubyは2.3.3です。
どうぞご教授お願いいたします。

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

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

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

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

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

guest

回答1

0

bundle install した際の一番下の結果まで載せることは可能ですか?
おそらくそこで何かしらの結果吐いて来ているはずなので

投稿2018/09/01 11:19

yuzujoe

総合スコア49

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

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

kyononstyle

2018/09/02 05:37

yuzujoe様 回答ありがとうございます。 これ・・・全部載せてるんですよね。
yuzujoe

2018/09/02 05:43

失礼しました ``` C:/Ruby23-x64/lib/ruby/site_ruby/2.3.0/bundler/build_metadata.rb:27:in ``': No such file or directory - git rev-parse --short HEAD (Errno::ENOENT) ``` これの以降また$マークに戻ってしまうということですかね? bundle doctorなどはやってみましたか?
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

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

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

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

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

ただいまの回答率
85.50%

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

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

質問する

関連した質問