从另一个rake命名空间访问变量

时间:2015-07-23 13:13:26

标签: ruby rake

我在嵌套命名空间中有很多rake任务。

我的所有任务都具有相同的结构,因此我不想为每个任务编写文档,而是使用每个命名空间中存在的配置变量来生成文档。

小例子:

namespace :metadata do |ns|
    config = {:data_location=>"/mnt/metadata/",
              :data_description=>"Metadata from system 5"}
    task :process do |task|
        # Code
    end
end

namespace :frontend_log do |ns|
    config = {:data_location=>"/mnt/backend/",
              :data_description=>"Logdata from backend"}
    task :process do |task|
        # Code
    end
end


namespace :backend_log do |ns|
    config = {:data_location=>"/mnt/backendlog/",
              :data_description=>"Logdata from backend"}
    task :process do |task|
        # Code
    end
end

想象一下这些名称空间中的150个。

namespace :documentation do |ns|
    task :generate do |task|
        # For each namespace that has a configuration
        # Generate a sentence about that namespace
    end
end

输出示例:

  

:metadata:process将处理来自/ mnt / metadata文件夹的数据,该文件夹包含来自系统5的元数据

     

:frontend_log:进程将处理来自/ mnt / backend文件夹的数据,该文件夹包含来自后端的Logdata

等等。

如何在:metadata内获取:documentation:generate的配置?

我这样做是为了避免重构代码,如果它们是建设性的,欢迎重构的建议,但实际上,这不是我提出这个问题的原因

1 个答案:

答案 0 :(得分:0)

所以到现在为止我已经用这种方式解决了它:

namespace :metadata do |ns|
    config = {:data_location=>"/mnt/metadata/",
              :data_description=>"Metadata from system 5"}
    task :process do |task|
        # Code
    end
    task :document do |task|
        selfdocument(config)
    end
end

namespace :frontend_log do |ns|
    config = {:data_location=>"/mnt/backend/",
              :data_description=>"Logdata from backend"}
    task :process do |task|
        # Code
    end
    task :document do |task|
        selfdocument(config)
    end
end

namespace :backend_log do |ns|
    config = {:data_location=>"/mnt/backendlog/",
              :data_description=>"Logdata from backend"}
    task :process do |task|
        # Code
    end
    task :document do |task|
        selfdocument(task, config)
    end
end

使用辅助功能

def selfdocument(task, config) do
    puts "#{task} will process data from the #{config[:data_location]} folder, which contains #{config[:data_description]}"
end

对于每个人来说,这不是重写或重构,因为我只是添加任务,而不是移动代码或更改现有代码。