T
Trans
In Rake, what's the difference between
task :strike => [ :coil ] do
# ...
end
and
task :strike do
coil
#...
end
Thanks,
T.
task :strike => [ :coil ] do
# ...
end
and
task :strike do
coil
#...
end
Thanks,
T.