up vote 62 down vote favorite
34
share [g+] share [fb]

I have a Rakefile that compiles the project in two ways, according to the global variable $build_type, which can be :debug or :release (the results go in separate directories):

task :build => [:some_other_tasks] do
end

I wish to create a task that compiles the project with both configurations in turn, something like this:

task :build_all do
  [ :debug, :release ].each do |t|
    $build_type = t
    # call task :build with all the tasks it depends on (?)
  end
end

Is there a way to call a task as if it were a method? Or how can I achieve anything similar?

link|improve this question
feedback

5 Answers

If you need the task to behave as a method, how about using an actual method?

task :build => [:some_other_tasks] do
  build
end

task :build_all do
  [:debug, :release].each { |t| build t }
end

def build(type = :debug)
  # ...
end

If you'd rather stick to rake's idioms, here are your possibilities, compiled from past answers:

  • This always executes the task, but it doesn't execute its dependencies:

    Rake::Task["build"].execute
    
  • This one executes the dependencies, but it only executes the task if it has not already been invoked:

    Rake::Task["build"].invoke
    
  • This first resets the task's already_invoked state, allowing the task to then be executed again, dependencies and all:

    Rake::Task["build"].reenable
    Rake::Task["build"].invoke
    

    (Notice that dependencies already invoked are not re-executed)

link|improve this answer
5  
Note that if your tasks are in namespaces, you must include the namespace when you invoke the task. Eg. Rake::Task['db:reset'].invoke – duckyfuzz Jul 6 '11 at 23:04
7  
If the task in questions takes arguments, you can pass them as arguments to #invoke. Eg. Rake::Task['with:args'].invoke("pizza") – Trotter Aug 30 '11 at 1:01
feedback
task :build_all do
  [ :debug, :release ].each do |t|
    $build_type = t
    Rake::Task["build"].reenable
    Rake::Task["build"].invoke
  end
end

That should sort you out, just needed the same thing myself.

link|improve this answer
Thanks. Just what I was looking for. – Mr Rogers May 6 '09 at 16:18
This is functional, but way too verbose. Sure there's nothing better? – kch Aug 17 '09 at 19:50
Exactly what was needed -- thanks. – csexton Feb 18 '10 at 16:26
feedback

for example:

Rake::Task["db:migrate"].invoke

link|improve this answer
2  
This invokes the task only if it wasn't already invoked. But I need to invoke the tasks with all other tasks it depends on twice. – Arry Feb 24 '09 at 8:45
feedback
task :build_all do
  [ :debug, :release ].each do |t|
    $build_type = t
    Rake::Task["build"].execute
  end
end
link|improve this answer
It doesn't work, because it just executes the body of the :build task and doesn't invoke the tasks that depend on it. – Arry Feb 23 '09 at 15:54
feedback

I've had the same problem, unfortunately reenable and invoke didn't do the trick for me. My solution: calling rake from rake. Not very 'clean', but avoids all that tinkering with rake's internal state:

task :inner do |t|
    dosomething()
end

task :outer do |t|
    sh 'rake inner'
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown