我有一个依赖于 httparty 的本地 gem。
本地一切都很好。
如果我将应用程序推送到 heroku,我不会收到任何错误。
如果我在 Heroku 中运行我的 gem,我会想念 httparty gem。
下面您可以在 Heroku
Locally 上本地和远程微调我的 gems 的状态:
:~/workspace/daemon (master)$ gem list | grep httparty
httparty (0.11.0)
:~/workspace/daemon (master)$ cat Gemfile.lock | grep httparty
httparty (0.11.0)
httparty
:~/workspace/daemon (master)$ cat esendex-daemon.gemspec | grep httparty
spec.add_development_dependency "httparty"
在 Heroku 上:
:~/workspace/daemon (master)$ heroku run gem list | grep httparty
:~/workspace/daemon (master)$ heroku run cat Gemfile.lock | grep httparty
httparty (0.11.0)
httparty
可能是什么问题呢?谢谢