代码之家  ›  专栏  ›  技术社区  ›  stephenr

是否可以获取命名空间中所有可用rake任务的列表?

  •  18
  • stephenr  · 技术社区  · 14 年前

    有可能吗 获取命名空间中的任务列表?一种编程的rake-tdb?

    3 回复  |  直到 14 年前
        1
  •  19
  •   stephenr    14 年前

    我找到了答案:

    tasks = Rake.application.tasks
    

    这将返回一个可以检查的Rake::Task对象数组。更多详情见 http://rake.rubyforge.org/

        2
  •  13
  •   knut    13 年前

    正如您所写的,使用Rake.application.tasks可以获得所有任务。

    但是在名称空间内,您只能选择名称空间的任务(task)mytest:tasklist)

    require 'rake'
    
    namespace :mytest do |ns|
    
      task :foo do |t|
        puts "You called task #{t}"
      end
    
      task :bar do |t|
        puts "You called task #{t}"
      end
    
      desc 'Get tasks inside actual namespace'
      task :tasklist do
        puts 'All tasks of "mytest":'
        puts ns.tasks #ns is defined as block-argument
      end
    
    end
    
    desc 'Get all tasks'
    task :tasklist do
      puts 'All tasks:'
      puts Rake.application.tasks
    end
    
    desc 'Get tasks outside the namespace'
    task :tasklist_mytest do
      puts 'All tasks of "mytest":'
      Rake.application.in_namespace(:mytest){|x|
        puts x.tasks
      }
    end
    
    if $0 == __FILE__
      Rake.application['tasklist'].invoke()  #all tasks
      Rake.application['mytest:tasklist'].invoke() #tasks of mytest
      Rake.application['tasklist_mytest'].invoke() #tasks of mytest
    end
    
        3
  •  1
  •   garno    14 年前

    您可以像这样使用grep命令

    desc 'Test'
    task :test do
        # You can change db: by any other namespaces
        result = %x[rake -T | sed -n '/db:/{/grep/!p;}' | awk '{print$2}'] 
        result.each_line do |t|
            puts t # Where t is your task name
        end
    end