前提・実現したいこと
rails-tutorial3章のherokuへのデプロイなのですが、エラーがでてしまいます。
2章でも、同じエラーがでてその時は、webpackerを再度インストールして解決したのですが、今回は再度インストールしてもエラーが治りません。
Gemfileもtutorialどうり記載してあり、bundle install --without productionでインストールしているのになぜこのようなエラーが出るのでしょうか?
gitにpushできないというエラーも起きているのは、このwebpackerが正常にインストールできていないのが原因でしょうか?
発生している問題・エラーメッセージ
エラーメッセージ remote: webpack binstubs not found. remote: Have you run rails webpacker:install ? remote: Make sure the bin directory or binstubs are not included in .gitignore remote: Exiting! remote: remote: ! remote: ! Precompiling assets failed. remote: ! remote: ! Push rejected, failed to compile Ruby app. remote: remote: ! Push failed remote: Verifying deploy... remote: remote: ! Push rejected to aqueous-savannah-14839. remote: To https://git.heroku.com/aqueous-savannah-14839.git ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to 'https://git.heroku.com/aqueous-savannah-14839.git'`` rails server を実行すると別のエラーも出ます。 Webpacker configuration file not found /home/ubuntu/environment/sample_app/config/webpacker.yml. Please run rails webpacker:install Error: No such file or directory @ rb_sysopen - /home/ubuntu/environment/sample_app/config/webpacker.yml (RuntimeError) ```ruby ソースコード
試したこと
Webpackerをbundle install。
https://qiita.com/libertyu/items/1eb74adc817ab8971100
補足情報(FW/ツールのバージョンなど)
rails 6.0.3
ruby 2.6.3p62
Gemfile
ここにより詳細な情報を記載してください。
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'rails', '6.0.3'
gem 'puma', '4.3.4'
gem 'sass-rails', '5.1.0'
gem 'webpacker', '4.0.7'
gem 'turbolinks', '5.2.0'
gem 'jbuilder', '2.9.1'
gem 'bootsnap', '1.4.5', require: false
group :development, :test do
gem 'sqlite3', '1.4.1'
gem 'byebug', '11.0.1', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'web-console', '4.0.1'
gem 'listen', '3.1.5'
gem 'spring', '2.1.0'
gem 'spring-watcher-listen', '2.0.1'
end
group :test do
gem 'capybara', '3.28.0'
gem 'selenium-webdriver', '3.142.4'
gem 'webdrivers', '4.1.2'
gem 'rails-controller-testing', '1.0.4'
gem 'minitest', '5.11.3'
gem 'minitest-reporters', '1.3.8'
gem 'guard', '2.16.2'
gem 'guard-minitest', '2.4.6'
end
group :production do
gem 'pg', '1.1.4'
end
Windows ではタイムゾーン情報用の tzinfo-data gem を含める必要があります
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/21 01:42