前提・実現したいこと
Herokuへアプリをデプロイしたい。
プログラミング初心者で、初めて質問させていただきます。
Ruby on Railsでポートフォリオを登録するアプリを作成しました。開発環境では問題なく動作したので、いざHerokuを使ってデプロイしようとしたらエラーが出てしまい、デプロイできない状況です。
発生している問題・エラーメッセージ
remote: rake aborted! remote: NoMethodError: undefined method `[]' for nil:NilClass remote: /tmp/build_68ac7f61/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/sass_processor.rb:278:in `sprockets_context' remote: /tmp/build_68ac7f61/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/sass_processor.rb:124:in `asset_path' remote: /tmp/build_68ac7f61/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/sass_processor.rb:137:in `asset_url' remote: /tmp/build_68ac7f61/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/sass_processor.rb:155:in `image_url' remote: /tmp/build_68ac7f61/vendor/bundle/ruby/2.6.0/gems/sass-3.7.4/lib/sass/script/tree/funcall.rb:151:in `block in _perform' 〜 remote: /tmp/build_68ac7f61/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/rake/sprocketstask.rb:147:in `with_logger' remote: /tmp/build_68ac7f61/vendor/bundle/ruby/2.6.0/gems/sprockets-rails-3.2.2/lib/sprockets/rails/task.rb:66:in `block (2 levels) in define' remote: Tasks: TOP => assets:precompile remote: (See full trace by running task with --trace) remote: remote: ! remote: ! Precompiling assets failed. remote: ! remote: ! Push rejected, failed to compile Ruby app. remote: remote: ! Push failed remote: ! remote: ! ## Warning - The same version of this code has already been built: f073f2076196b16739610384b3fde5102c76e741 remote: ! remote: ! We have detected that you have triggered a build from source code with version f073f2076196b16739610384b3fde5102c76e741 remote: ! at least twice. One common cause of this behavior is attempting to deploy code from a different branch. remote: ! remote: ! If you are developing on a branch and deploying via git you must run: remote: ! remote: ! git push heroku <branchname>:main remote: ! remote: ! This article goes into details on the behavior: remote: ! https://devcenter.heroku.com/articles/duplicate-build-version remote: remote: Verifying deploy... remote: remote: ! Push rejected to gratitude-and-humors. remote: To https://git.heroku.com/gratitude-and-humors.git ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to 'https://git.heroku.com/gratitude-and-humors.git'
試したこと
エラー文「NoMethodError: undefined method []' for nil:NilClass
」を調べてみました。
するとエラー文の下(今回の場合だと「/tmp/build_68ac7f61/vendor/bundle/ruby/2.6.0/gems/sprockets-3.7.2/lib/sprockets/sass_processor.rb:278:in sprockets_context
」)を見てみるとよいとありました。
この場合だとSASSのファイルがおかしいと思っていいのでしょうか?
まだMVC周りのファイルしか触ったことがなく、上記のファイルの格納場所などが分からず、手詰まりになっています。
よければお力を貸していただけないでしょうか?
よろしくお願いいたします。
補足情報(FW/ツールのバージョンなど)
ruby 2.6.5
あなたの回答
tips
プレビュー