🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Heroku

HerokuはHeroku社が開発と運営を行っているPaaSの名称です。RubyやNode.js、Python、そしてJVMベース(Java、Scala、Clojureなど)の複数のプログラミング言語をサポートしている。

Ruby on Rails

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

Q&A

解決済

1回答

1324閲覧

HEROKU デプロイできない

munequn

総合スコア17

Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Heroku

HerokuはHeroku社が開発と運営を行っているPaaSの名称です。RubyやNode.js、Python、そしてJVMベース(Java、Scala、Clojureなど)の複数のプログラミング言語をサポートしている。

Ruby on Rails

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

0グッド

1クリップ

投稿2019/09/28 14:54

編集2019/09/28 18:08

前提としてgit,HEROKUの登録済みです。
HEROKUを使いデプロイしたいのでがエラーが解決できません。

git push heroku master

の後に以下のエラーが表示されてしまいます。
参考にした記事

remote: ! remote: ! There was an error parsing your Gemfile, we cannot continue remote: ! remote: ! [!] There was an error parsing `Gemfile`: syntax error, unexpected keyword_end, expecting end-of-input. Bundler cannot continue. remote: ! remote: ! # from /tmp/build_b5859f12a2c8a4f7f00c0fa9fae3a622/Gemfile:36 remote: ! # ------------------------------------------- remote: ! # gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] remote: ! > end remote: ! # remote: ! # ------------------------------------------- remote: !

endがなにかしら原因でしょうか?

source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '2.5.0' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 6.0.0' # Use sqlite3 as the database for Active Record gem '', '~> 1.4'#sqlite3 # Use Puma as the app server gem 'puma', '~> 3.11' # Use SCSS for stylesheets gem 'sass-rails', '~> 5' # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker gem 'webpacker', '~> 4.0' # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks gem 'turbolinks', '~> 5' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.7' # Use Redis adapter to run Action Cable in production # gem 'redis', '~> 4.0' # Use Active Model has_secure_password # gem 'bcrypt', '~> 3.1.7' # Use Active Storage variant # gem 'image_processing', '~> 1.2' # Reduces boot times through caching; required in config/boot.rb gem 'bootsnap', '>= 1.4.2', require: false group :development, :test do gem 'sqlite3' end # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] #end group :development do # Access an interactive console on exception pages or by calling 'console' anywhere in the code. gem 'web-console', '>= 3.3.0' gem 'listen', '>= 3.0.5', '< 3.2' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' gem 'spring-watcher-listen', '~> 2.0.0' end group :test do # Adds support for Capybara system testing and selenium driver gem 'capybara', '>= 2.15' gem 'selenium-webdriver' # Easy installation and use of web drivers to run system tests with browsers gem 'webdrivers' end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] group :production do gem 'pg' end

bundle installログ
```The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java.
Using rake 12.3.3
Using concurrent-ruby 1.1.5
Using i18n 1.6.0
Using minitest 5.12.1
Using thread_safe 0.3.6
Using tzinfo 1.2.5
Using zeitwerk 2.1.10
Using activesupport 6.0.0
Using builder 3.2.3
Using erubi 1.9.0
Using mini_portile2 2.4.0
Using nokogiri 1.10.4
Using rails-dom-testing 2.0.3
Using crass 1.0.4
Using loofah 2.2.3
Using rails-html-sanitizer 1.2.0
Using actionview 6.0.0
Using rack 2.0.7
Using rack-test 1.1.0
Using actionpack 6.0.0
Using nio4r 2.5.2
Using websocket-extensions 0.1.4
Using websocket-driver 0.7.1
Using actioncable 6.0.0
Using globalid 0.4.2
Using activejob 6.0.0
Using activemodel 6.0.0
Using activerecord 6.0.0
Using mimemagic 0.3.3
Using marcel 0.3.3
Using activestorage 6.0.0
Using mini_mime 1.0.2
Using mail 2.7.1
Using actionmailbox 6.0.0
Using actionmailer 6.0.0
Using actiontext 6.0.0
Using public_suffix 4.0.1
Using addressable 2.7.0
Using bindex 0.8.1
Using msgpack 1.3.1
Using bootsnap 1.4.5
Using bundler 2.0.2
Using byebug 11.0.1
Using regexp_parser 1.6.0
Using xpath 3.2.0
Using capybara 3.29.0
Using childprocess 2.0.0
Using ffi 1.11.1
Using jbuilder 2.9.1
Using rb-fsevent 0.10.3
Using rb-inotify 0.10.0
Using ruby_dep 1.5.0
Using listen 3.1.5
Using method_source 0.9.2
Using puma 3.12.1
Using rack-proxy 0.6.5
Using thor 0.20.3
Using railties 6.0.0
Using sprockets 3.7.2
Using sprockets-rails 3.2.1
Using rails 6.0.0
Using rubyzip 1.3.0
Using sass-listen 4.0.0
Using sass 3.7.4
Using tilt 2.0.10
Using sass-rails 5.1.0
Using selenium-webdriver 3.142.4
Using spring 2.1.0
Using spring-watcher-listen 2.0.1
Using sqlite3 1.4.1
Using turbolinks-source 5.2.0
Using turbolinks 5.2.1
Using web-console 4.0.1
Using webdrivers 4.1.2
Using webpacker 4.0.7
Bundle complete! 18 Gemfile dependencies, 75 gems now installed.
Gems in the group production were not installed.
Use bundle info [gemname] to see where a bundled gem is installed.

git statusの結果 ```On branch master Your branch and 'origin/master' have diverged, and have 7 and 9 different commits each, respectively. (use "git pull" to merge the remote branch into yours) nothing to commit, working tree clean

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

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

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

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

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

退会済みユーザー

退会済みユーザー

2019/09/28 14:58

まずローカルでbundle installは成功しますか?
siruku6

2019/09/28 15:09

There was an error parsing `Gemfile`: syntax error, unexpected keyword_end, expecting end-of-input. Bundler cannot continue. と、しっかりエラー原因が書いてあります。 Gemfileのシンタックスエラーの可能性があるので、自力で解決できそうになければ、Gemfileを質問文に掲載すると良さそうですね。
munequn

2019/09/28 15:16

bundler -v Bundler version 2.0.2です!
munequn

2019/09/28 15:19

おっしゃる通りです。Gemfileを追記させていただきました!
退会済みユーザー

退会済みユーザー

2019/09/28 15:19

質問に答えてほしいのですが、ローカルでは成功しますか?
munequn

2019/09/28 15:28

失礼しました。 bundle bundlerは別物でしょうか?一緒であればしています!
munequn

2019/09/28 15:29

--- BUNDLE_WITHOUT: "production" が.bandleです。
退会済みユーザー

退会済みユーザー

2019/09/28 15:32

ローカルでbundle installを実行して成功しましたか?
guest

回答1

0

ベストアンサー

ローカルでbundle installが成功するのならコミットが不足しているだけだと思います。

git add .
git commit -m "comment"

でプロジェクト下のファイルをしっかりコミットして再試行すれば良いです。

投稿2019/09/28 15:37

退会済みユーザー

退会済みユーザー

総合スコア0

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

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

munequn

2019/09/28 15:42

bundle installをしようとすると同じエラー文が表示されます。 できていないということでしょうか?
munequn

2019/09/28 15:45

できました!
munequn

2019/09/28 16:38

結局同じエラーが出るだけで解決できません... bundleも問題なさそうですがGemfileに問題があるんでしょうか?
退会済みユーザー

退会済みユーザー

2019/09/28 16:42 編集

まずmunequnさんの日本語が雑で状況が理解できないので改善して頂けないでしょうか。 > 結局同じエラーが出るだけで解決できません... ローカルでですか? Herokuでですか? 最初から質問していることですが私はまだ理解できていません。 > できていない > できました 「何が」ですか? > bundleも問題なさそう bundleとは何のことですか? 結局bundle installが成功するのかどうか私に伝わってきていません。 プログラミング能力以前の部分なのでしっかり伝えて下さい。 そうでないと回答ができません。
munequn

2019/09/28 17:12

日本語が雑で申し訳ありません。 bandle install > 成功しています。 エラーはHerokuです。
退会済みユーザー

退会済みユーザー

2019/09/28 17:14

ローカルでbundle installが成功していることがわかるログを提示してください。 またgit statusの実行結果を提示してください。
munequn

2019/09/28 18:08

追記させていただきました。
退会済みユーザー

退会済みユーザー

2019/09/29 02:13

git pullでリモートリポジトリの変更を取り込んでください。
munequn

2019/10/02 14:37

返信遅くなり申し訳ありません。 デプロイできました!
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

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

ただいまの回答率
85.36%

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

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

質問する

関連した質問