I don't understand, why Rake dependencies?

T

Trans

In Rake, what's the difference between

task :strike => [ :coil ] do
# ...
end

and

task :strike do
coil
#...
end

Thanks,
T.
 
G

Gavin Sinclair

Trans said:
In Rake, what's the difference between

task :strike => [ :coil ] do
# ...
end

This will execute the :coil task if it hasn't already been executed,
whereas...
task :strike do
coil
#...
end

....this will execute the :coil task unconditionally.

Cheers,
Gavin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top