Failed to install gems via Bundler. remote: ! remote: remote: ! Push rejected, failed to compile Ruby app remote:

后端 未结 1 435
孤独总比滥情好
孤独总比滥情好 2021-01-26 11:46

I am working with an app and wanted to deploy it on heroku but I was getting some error messages and a build failed on heroku.

Below is my gemfile

source         


        
相关标签:
1条回答
  • 2021-01-26 12:22

    Does not that mean simply that your Gemfile/Gemfile.lock in heroku are out of sync? If bundle install modifies Gemfile.lock, you should commit that and then push to heroku.

    Another problem could be too old bundler. gem update bundler ; bundle install would fix that problem, if that's an issue.

    0 讨论(0)
提交回复
热议问题