是否可以在 Rakefile 任务中使用另一个任务?

发布于 2024-08-23 02:21:32 字数 76 浏览 6 评论 0原文

我想在 Rakefiles 中使用一些 Rake 任务。是否可以包含一个 rakefile 中定义的来自另一个 rakefile 的任务?

I have some Rake tasks I'd like to use in my Rakefiles. Is it possible to include tasks defined in one rakefile from another rakefile?

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

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

发布评论

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

评论(2

鹿! 2024-08-30 02:21:32

Rake 文件与 ruby​​ 文件没有什么不同。
因此,只需加载包含文件 B 中其他任务的文件 A,它们将在执行 B 时可用。

例如,如果您将以下代码放入 Rakefile 中,

Dir['tasks/*.rake'].each { |file| load(file) }

则可以在 tasks 子文件夹中创建任意数量的 .rake 文件,并从主 Rakefile< /代码>。

Rake files are nothing different than ruby files.
So just load the file A containing the other tasks in your file B and they will be available when B is executed.

For instance, if you put the following code in your Rakefile

Dir['tasks/*.rake'].each { |file| load(file) }

then you can create as many .rake files in the tasks subfolder and call them from the main Rakefile.

甜嗑 2024-08-30 02:21:32

我刚刚做了类似的事情:

task :master do
  `rake slave`
end

task :slave do
  puts "Hello World"
end

也许有点简陋,但它可以完成工作。

I've just done something similar with the following:

task :master do
  `rake slave`
end

task :slave do
  puts "Hello World"
end

Perhaps a little rudimentary, but it does the job.

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