rails6.1.0
gemにaws-sdkを入れインストール。ローカルで問題なかったので
herokuへpushしたところエラーになりました。
エラーメッセージによると、
assets:precompileしようとしたら、
LoadError: cannot load such file -- aws-sdk
になったようです。
念のため前後の行も少し含めました。
remote: Using turbolinks 5.2.1 remote: Using uglifier 4.2.0 remote: Using webpacker 5.2.1 remote: Bundle complete! 45 Gemfile dependencies, 94 gems now installed. remote: Gems in the groups 'development' and 'test' were not installed. remote: Bundled gems are installed into `./vendor/bundle` remote: Bundle completed (0.74s) remote: Cleaning up the bundler cache. remote: -----> Installing node-v12.16.2-linux-x64 remote: -----> Installing yarn-v1.22.4 remote: -----> Detecting rake tasks remote: -----> Preparing app for Rails asset pipeline remote: Running: rake assets:precompile remote: rake aborted! remote: LoadError: cannot load such file -- aws-sdk remote: /tmp/build_c762ffca/vendor/bundle/ruby/3.0.0/gems/bootsnap-1.7.2/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:34:in `require' remote: /tmp/build_c762ffca/vendor/bundle/ruby/3.0.0/gems/activesupport-6.1.3/lib/active_support/dependencies.rb:332:in `block in require' remote: /tmp/build_c762ffca/vendor/bundle/ruby/3.0.0/gems/activesupport-6.1.3/lib/active_support/dependencies.rb:299:in `load_dependency' remote: /tmp/build_c762ffca/vendor/bundle/ruby/3.0.0/gems/activesupport-6.1.3/lib/active_support/dependencies.rb:332:in `require' remote: /tmp/build_c762ffca/config/initializers/aws.rb:1:in `<main>' remote: /tmp/build_c762ffca/vendor/bundle/ruby/3.0.0/gems/bootsnap-1.7.2/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:59:in `load'
\config\initializers\aws.rb
ruby
1require 'aws-sdk' 2 3Aws.config.update({ 4 region: 'ap-northeast-1', 5 credentials: Aws::Credentials.new(Rails.application.credentials.aws[:access_key_id], Rails.application.credentials.aws[:secret_access_key]), 6}) 7 8S3_BUCKET = Aws::S3::Resource.new.bucket(Rails.application.credentials.aws[:bucket]) 9 10
先頭のrequire 'aws-sdk'
が読めていないのでしょうか?
ローカルでは特にエラーメッセージないのですが、ここの読込ができているか確認する方法が分かりませんorz
何が原因でしょうか?
先輩方お力添えお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。