取り組んでいること
herokuにデプロイした後に画像が一定時間が経過すると消えるというのを記事で見たので保存先をs3にしてみることにしました。
エラー発生
gem "refile-s3"をbundle installしようとすると、、、
Bundler could not find compatible versions for gem "refile": In snapshot (Gemfile.lock): refile (= 0.7.0) In Gemfile: refile-mini_magick was resolved to 0.2.0, which depends on refile (~> 0.6) refile-s3 was resolved to 0.1.0, which depends on refile (~> 0.5.0) Running `bundle update` will rebuild your snapshot from scratch, using only the gems in your Gemfile, which may resolve the conflict.
というエラーが出ました。bundle updateをしても
Bundler could not find compatible versions for gem "refile": In Gemfile: refile-mini_magick was resolved to 0.2.0, which depends on refile (~> 0.6) refile-s3 was resolved to 0.1.0, which depends on refile (~> 0.5.0)
と出てしまいます。
bundle installでのエラーは初めてなので解決方法がわからなく困ってます。
該当するコード
gem
1gem 'devise' 2gem "haml-rails", ">= 1.0", '<= 2.0.1' 3gem 'font-awesome-sass' 4gem "refile", github: 'refile/refile', require: "refile/rails" 5gem "refile-mini_magick", github: 'refile/refile-mini_magick' 6gem 'rails_12factor', group: :production 7gem 'dotenv-rails'
https://qiita.com/syo19961113/items/57e0fa6947863fb03e5f
こちらのQiitaの記事を参考に作成しようとしています。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/09 15:19
2020/09/09 15:20
2020/09/09 15:32
2020/09/09 16:24 編集
2020/09/28 07:35
2020/09/28 10:39 編集