我已将我的应用程序上传到heroku,它是一个测试登录的简单应用程序,它使用名为sorcery的宝石,但是当我在heroku上测试它时,我得到应用程序错误
要上传到heroku我只做这个序列:
git init
git add .
git commit -m "init"
heroku create
heroku push heroku master
heroku rake db:migrate
我收到此错误:
rake aborted!
undefined method `sorcery' for
#<Rails::Application::Configuration:0x0000000266e660>
)
请帮助我,我认为宝石巫术引起了这个问题,但我不知道该怎么做。
您可以看到网站here
答案 0 :(得分:0)
这对你本地主机有效吗?
我看到你的命令列表
bundle install
不存在。
确保你有
gem "sorcery"
宝石文件中的
然后做
heroku login
和
bundle install
您可能会遇到其他错误。转到Getting Started with Rails 3.x on Heroku并按照说明操作。