在任何来源中均找不到 devise-1.4.6

发布于 2024-12-07 13:55:29 字数 127 浏览 0 评论 0原文

我已经在本地开发环境中成功安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花之痕靓丽 2024-12-14 13:55:29

在 Gemfile 的开头添加以下行:

source "http://rubygems.org"

Heroku 的 gem 源列表中似乎没有 RubyGems。

或者,您可能需要执行 bundle update 将您的 gems 更新到最新版本(iirc,devise 1.4.7 已发布),然后再次推送到 heroku。

Add the following line just at the beginning of your Gemfile:

source "http://rubygems.org"

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文