Whenever I\'m deploying to Heroku (Ruby on Rails app using the heroku_san gem) it says the following:
Cleaning up the bundler cache.
Would have removed sitem
This is due to a recently-introduced change in Bundler. We (Heroku) need to track down why it thinks it is running in --dry-run mode and fix it.
In the meantime, this is not harmful and shouldn't cause any issues. Unfortunately, there's no way to clear your cache manually if you're worried about it.
I also get this on every Heroku app I've ever deployed and have yet to experience problems.
Here's why I think you don't have to worry about it:
And here's wild speculation as to why Heroku isn't cleaning the bundler cache:
Memory is more expensive than hard drive space, so while most gems might take up a trivial amount of space on a hard drive, they can add up if a ton of gems have to be loaded into memory. However, if a gem isn't in your Gemfile, it won't be in memory. And it's very likely more expensive to remove (and possibly later re-download) a gem than it is to keep it stored on the drive, just in case you later change your mind and want to re-add it to your Gemfile.