Class Rake::MultiTask
In: lib/rake.rb
Parent: Task

######################################################################### Same as a regular task, but the immediate prerequisites are done in parallel using Ruby threads.

Methods

Public Instance methods

[Source]

     # File lib/rake.rb, line 558
558:     def invoke_prerequisites
559:       threads = @prerequisites.collect { |p|
560:         Thread.new(p) { |r| application[r].invoke }
561:       }
562:       threads.each { |t| t.join }
563:     end

[Validate]