Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm running multiple of my Rails apps on Heroku. I use most of the standards including Gemfile and Bundler. Gemfile.lock is commited with Git.

However, when I push to Heroku, instead of reading Gemfile.lock, it seems to just run bundle install --without development:test --path vendor/bundle --binstubs bin/ from afresh, which means it updates the gems every time I push, causing discrepancies between my dev and prod environments.

I get no error message, but that's not the behavior I expect. What am I doing wrong?

Thanks!

share|improve this question
you should write the gem version you expect in your gemfile – apneadiving Nov 26 '12 at 23:48

1 Answer

I think it does this s part of it's 'build everything from the ground up in case the developers system has any differences" philosophy.
For example if you were running "ibuntu" (made up) and your environment had different dependencies between gems due to the way ruby is implemented on your system. Its safer just to build everything from scratch o their system and make sure that any dependencies that come up in their stack get met.

share|improve this answer
Well, that kind of sucks... I got into troubles a few times because the new gem it was updating to was buggy or just completely refactored with new configurations. – ben Nov 26 '12 at 23:07
Bundler allows you to freeze the version of a gem that you are using. Check out the Bundler syntax at gembundler.com/gemfile.html. The idea is that you would specify versions with something like gem "rack", ">=1.0" or gem "thin", "~>1.1" – 44maagnum Nov 27 '12 at 0:17
Yes, I find it a bit overkill though... Guess there's no other choice. – ben Nov 27 '12 at 3:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.