In Files

Parent

Rake::MultiTask

                                                                         

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

Private Instance Methods

invoke_prerequisites(args, invocation_chain) click to toggle source
     # File lib/rake.rb, line 827
827:     def invoke_prerequisites(args, invocation_chain)
828:       threads = @prerequisites.collect { |p|
829:         Thread.new(p) { |r| application[r].invoke_with_call_chain(args, invocation_chain) }
830:       }
831:       threads.each { |t| t.join }
832:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.