如何为“丢失”的 Rails 应用程序生成新的 Rakefile它的Rakefile?

发布于 2024-09-18 09:12:40 字数 211 浏览 4 评论 0原文

不知何故,我的 Rails 应用程序没有 Rakefile。不知道是丢了还是怎么的。

因此,当我运行:

rake gems:refresh_specs

我得到:

No Rakefile found

如何生成新的 Rakefile 来刷新我的 gem 规格?

Somehow my Rails app doesn't have a Rakefile. I don't know if it lost it or what.

So when I run:

rake gems:refresh_specs

I get:

No Rakefile found

How do I generate a new Rakefile to refresh my gem specs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

疯到世界奔溃 2024-09-25 09:12:40

您可以再次调用rails来重新生成您的应用程序。要避免覆盖现有文件,请使用 -s--skip 选项。因此,从 Rails 应用程序上方的目录中:

rails my_app -s

它将列出它所做的更改,这应该只是您丢失的 rake 文件,除非您有点热衷于删除其他内容。

You can call rails again to re-generate your application. To avoid overwriting existing files use the -s or --skip option. So from the directory above your rails app:

rails my_app -s

It will list the changes it makes which should just be your missing rake file unless you've been a bit keen to delete other things.

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