global

def multitask(args, &block)


multitask :deploy => [:deploy_gem, :deploy_rdoc]
Example:

(which is obvious when you think about it)
*not* guarantee that its prerequisites will execute in any given order
Declare a task that performs its prerequisites in parallel. Multitasks does
def multitask(args, &block)
  Rake::MultiTask.define_task(args, &block)
end