Similar questions was asked on those links but the answer do not solve my problem.
why does heroku not list the same gems as i have locally?
I have the following Gemfile :
source 'http://rubygems.org'
gem 'rails'
gem 'daemons', '=1.0.10'
gem 'sqlite3'
gem 'locomotive_cms', :git => 'git://github.com/locomotivecms/engine.git', :require => 'locomotive/engine'
In my Gemfile.lock there so :
daemons (1.0.10)
delayed_job (3.0.0.pre4)
activesupport (~> 3.0)
daemons (= 1.0.10)
But for some obscure reason to me, I get this error on Heroku :
You have already activated daemons 1.1.0, but your Gemfile requires daemons 1.0.10. Consider using bundle exec
So does it means Heroku adds someway this gem version, or ... I misunderstood something about bundle ?