0
我有一個本地gem與依賴到httparty。Heroku不安裝寶石
本地一切都很好。
如果我將應用程序推送到heroku,我不會有任何錯誤。
如果我在Heroku上運行我的寶石,我錯過了httparty寶石。
下面你可以在本地和遠程罰我的寶石的地位在Heroku
本地:
:~/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
可能是什麼問題呢? 謝謝
你能提供的Heroku 「安裝」 登錄? –
顯示您的gemfile。 – mrudult