Flowdock
method

invoke_prerequisites

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: MultiTask
invoke_prerequisites(args, invocation_chain) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rake/multi_task.rb, line 8
    def invoke_prerequisites(args, invocation_chain)
      threads = @prerequisites.collect { |p|
        Thread.new(p) { |r| application[r, @scope].invoke_with_call_chain(args, invocation_chain) }
      }
      threads.each { |t| t.join }
    end
Register or log in to add new notes.