簡體   English   中英

Heroku push denied 錯誤:無法通過 Bundler 安裝 gems(可能是 mimemagic 引起的)

[英]Heroku push rejected error: Failed to install gems via Bundler (probably caused by mimemagic)

我嘗試在 heroku 上推送我的項目並彈出錯誤消息

git push heroku master


    remote: -----> Building on the Heroku-18 stack
    remote: -----> Using buildpack: heroku/ruby
    remote: -----> Ruby app detected
    remote: -----> Installing bundler 2.2.11
    remote: -----> Removing BUNDLED WITH version in the Gemfile.lock
    remote: -----> Compiling Ruby/Rails
    remote: -----> Using Ruby version: ruby-2.6.3
    remote: -----> Installing dependencies using bundler 2.2.11
    remote:        Running: BUNDLE_WITHOUT='development:test' BUNDLE_PATH=vendor/bundle BUNDLE_BIN=vendor/bundle/bin BUNDLE_DEPLOYMENT=1 bundle install -j4
    remote:        Fetching gem metadata from https://rubygems.org/............
    remote:        **Your bundle is locked to mimemagic (0.3.5), but that version could not be found**
    remote:        in any of the sources listed in your Gemfile. If you haven't changed sources,
    remote:        that means the author of mimemagic (0.3.5) has removed it. You'll need to update
    remote:        your bundle to a version other than mimemagic (0.3.5) that hasn't been removed
    remote:        in order to install.
    remote:        Bundler Output: Fetching gem metadata from https://rubygems.org/............
    remote:        Your bundle is locked to mimemagic (0.3.5), but that version could not be found
    remote:        in any of the sources listed in your Gemfile. If you haven't changed sources,
    remote:        that means the author of mimemagic (0.3.5) has removed it. You'll need to update
    remote:        your bundle to a version other than mimemagic (0.3.5) that hasn't been removed
    remote:        in order to install.
    remote: 
    remote:  !
    remote:  !     Failed to install gems via Bundler.
    remote:  !
    remote:  !     Push rejected, failed to compile Ruby app.
    remote: 
    remote:  !     Push failed
    remote:  !

我猜這個問題是由 rails gem mimemagic 的版本過時引起的,所以我嘗試更新到最新版本,它仍然無法正常工作。

這是我的 ruby,Rails,mimemagic 版本

ruby -v
ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-darwin18]

rails -v
Rails 6.1.3.1

bundle info mimemagic
  * mimemagic (0.4.3)

Gemfile 中的信息

gem 'rails', '~> 6.1', '>= 6.1.0'
gem 'bundler', '~> 2.2', '>= 2.2.1.1'
gem 'mimemagic', '~> 0.4.3'

在 Gemfile.lock

 mimemagic (~> 0.4.3)

運行bundle update mimemagic為我工作

在 Gemfile 中將 mimemagic 的版本更改為 0.3.10

Mimemagic 似乎正在經歷更新? 希望很快就會修復。 現在嘗試將 mimemagic 更改為以前的版本..

寶石文件:

 gem 'mimemagic', '~> 0.3.10'

運行bundle update會自動將你應用的每個依賴更新到最新版本

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM