在任何来源中均找不到 devise-1.4.6
我已经在本地开发环境中成功安装了 devise 1.4.6。我的捆绑文件中有这个: gem 'devise'
但是当我想将其部署到 heroku 时,它说“在任何源中都找不到 devise-1.4.6”。我应该怎么办?谢谢!
I have installed devise 1.4.6 succesfully on my local development environment. I have this in my bundle file: gem 'devise'
But when I want to deploy it to heroku, it says "Could not find devise-1.4.6 in any of the sources". What should I do? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Gemfile 的开头添加以下行:
Heroku 的 gem 源列表中似乎没有 RubyGems。
或者,您可能需要执行
bundle update
将您的 gems 更新到最新版本(iirc,devise 1.4.7 已发布),然后再次推送到 heroku。Add the following line just at the beginning of your Gemfile:
Heroku doesn't seem to have RubyGems in their list of sources for gems.
Alternatively you might want to execute
bundle update
to update your gems to the newest version (iirc, devise 1.4.7 is out) and then push to heroku again.