Heroku Cedar使用什么版本的Rake?
我的gemfile的版本是10.0.2,部署代码确认该文件捆绑在Heroku上:
Installing rake (10.0.2)但应用程序无法启动,运行heroku run rake db:migrate --app appname或查看heroku logs --tail会给出/app/vendor/bundle/ruby/1.9.1/gems/rake-10.0.2/lib/rake.rb:24:in 'require': no such file to load -- rake/version (LoadError)
发布于 2012-12-13 06:20:26
rake并没有预装在雪松上,你只是有一个空的容器。所有的依赖项都是从你的应用程序中引入的(例如Bundler)。
https://stackoverflow.com/questions/13840182
复制相似问题