在 rake 任务上创建子任务

发布于 2024-12-22 01:57:54 字数 174 浏览 1 评论 0原文

我有许多名为 example1_task、example1_task2 ...等的 rake 脚本。我喜欢将此脚本转换为一次并使用 example1:task1、example1:task2 就像我在 Rails 迁移上使用命令 rake db:migrate 所做的那样。

有什么想法吗?

提前致谢。

I have many rake scripts named example1_task, example1_task2 ... etc. I like to convert this scripts into once and use example1:task1, example1:task2 like i do with the command rake db:migrate on rails migrations.

Any idea ?

Thanks in advance.

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

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

发布评论

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

评论(1

转瞬即逝 2024-12-29 01:57:54

是的,使用命名空间:

namespace "example" do
 task :task1 do 
    #some code
 end
 task :task2 do 
    #some code
 end
end

Yes, use namespace:

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