Why does Heroku always find unresolved dependencies?

I have not installed any gems since the last deployment, but Heroku continues to think that there is something new, I suppose, and that significantly slows down my deployment time. How can I make sure that I do not receive this message?

EDIT:

This is from my deployment post. I don’t know ... is this normal?

Writing objects: 100% (13/13), 1.88 KiB, done. Total 13 (delta 10), reused 0 (delta 0) -----> Heroku receiving push -----> Rails app detected -----> Detected Rails is not set to serve static_assets Installing rails3_serve_static_assets... done -----> Gemfile detected, running Bundler version 1.0.7 Unresolved dependencies detected; Installing... Using --without test:development:staging Fetching source index for http://rubygems.org/ 
+4
source share
2 answers

I contacted the support and they solved it.

0
source
 $ git add Gemfile.lock $ git commit -m "We should always check in Gemfile.lock in our applications." $ git push heroku master 
0
source

Source: https://habr.com/ru/post/1337629/


All Articles