0

似乎无法弄清楚这一点,并尝试了我在这里找到的许多解决方案。

我的应用程序在本地运行良好,但在部署到 Heroku 时抛出应用程序错误。

2013-08-29T02:26:16.045405+00:00 app[web.1]: /usr/bin/env: ruby.exe: No such file or directory
2013-08-29T02:26:17.753833+00:00 heroku[web.1]: Process exited with status 127
2013-08-29T02:26:21.377211+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 39412 -e $RAILS_ENV`
2013-08-29T02:26:22.781105+00:00 app[web.1]: /usr/bin/env: ruby.exe: No such file or     directory
2013-08-29T02:26:24.414525+00:00 heroku[web.1]: Process exited with status 127
2013-08-29T02:26:24.430021+00:00 heroku[web.1]: State changed from starting to crashed

值得注意的是,我有一个 Procfile,其中包含:

web: bundle exec rails server thin -p $PORT -e $RACK_ENV

任何帮助将不胜感激!

4

1 回答 1

1

heroku 扼流圈识别 Windows ruby​​ 环境可执行文件。

bin/bundle bin/rake bin/rails 都包含该行#!/usr/bin/env ruby.exe

将其更改为

#!/usr/bin/env ruby

然后你应该能够部署

于 2013-08-29T03:33:43.010 回答