我有一个使用 ruby 编写的程序。它没有任何 Web 界面,但我使用 bundler 进行依赖管理。
在我的本地系统上,运行应用程序就像键入一样简单rake app:start
,并且加载得很好。
但是,当我部署到 heroku 时,我的应用程序因cannot load such file -- bundler
错误而崩溃。
我的 Procfile 看起来有这个条目app: bundle exec rake app:start
。
任何帮助是极大的赞赏。
我有一个使用 ruby 编写的程序。它没有任何 Web 界面,但我使用 bundler 进行依赖管理。
在我的本地系统上,运行应用程序就像键入一样简单rake app:start
,并且加载得很好。
但是,当我部署到 heroku 时,我的应用程序因cannot load such file -- bundler
错误而崩溃。
我的 Procfile 看起来有这个条目app: bundle exec rake app:start
。
任何帮助是极大的赞赏。