George Mauer
George Mauer

Reputation: 122122

Specifying that a task has multiple dependencies

I would like to specify that:

How would I specify that last one? That in order to run the :output_extensions task, both :build_extensions and :output_core must be completed?

Upvotes: 23

Views: 8398

Answers (1)

Vincent
Vincent

Reputation: 4933

You specify them with an array:

task :output_extension => [:build_extension, :output_core]

Upvotes: 40

Related Questions