0
類似的問題,有人問這些鏈接,但答案沒有解決我的問題。Heroku的確預加載了一些特定的寶石?
why does heroku not list the same gems as i have locally?
我有以下的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'
在我Gemfile.lock的有這麼:
daemons (1.0.10)
delayed_job (3.0.0.pre4)
activesupport (~> 3.0)
daemons (= 1.0.10)
但對於一些模糊的原因對我來說, Heroku上出現這個錯誤:
You have already activated daemons 1.1.0, but your Gemfile requires daemons 1.0.10. Consider using bundle exec
那麼這是否意味着Heroku增加了一些這個寶石版本,或者...我誤解了一些關於捆綁的東西?