Rake 任务:如何从另一个名称空间创建任务先决条件?

发布于 2024-11-18 23:45:00 字数 418 浏览 3 评论 0原文

rake 任务允许定义之前需要运行的其他任务列表作为先决条件,即

namespace :import do 
 task :products => [:environment, :tax_categories] do
   ... # create products from import and reference tax categories
 end
end

但是,如果它是在另一个命名空间中定义的,我如何引用tax_categories 任务,例如

namespace :init do
 task :tax_categories => :environment do
   ... # create tax categories
 end
end

感谢您的帮助。

rake tasks allow to define a list of other tasks that need to run before as a prerequesite, i.e.

namespace :import do 
 task :products => [:environment, :tax_categories] do
   ... # create products from import and reference tax categories
 end
end

However, how could i reference the tax_categories task if it was defined in another namespace, like

namespace :init do
 task :tax_categories => :environment do
   ... # create tax categories
 end
end

Thanks for the help.

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

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

发布评论

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

评论(1

女皇必胜 2024-11-25 23:45:00

您可能可以这样做,但不知道这是否是推荐的方式:

namespace :import do 
 task :products => [:environment, "init:tax_categories"] do
   ... # create products from import and reference tax categories
 end
end

You could probably do this, but dont know if this is the recommended way:

namespace :import do 
 task :products => [:environment, "init:tax_categories"] do
   ... # create products from import and reference tax categories
 end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文