如何为“丢失”的 Rails 应用程序生成新的 Rakefile它的Rakefile?
不知何故,我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以再次调用
rails
来重新生成您的应用程序。要避免覆盖现有文件,请使用-s
或--skip
选项。因此,从 Rails 应用程序上方的目录中:它将列出它所做的更改,这应该只是您丢失的 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: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.