J
James Edward Gray II
Assuming the Rakefile:
namespace :abc do
task :foo do
# ...
end
end
namespace :def do
task :bar => ??? do
# ...
end
end
Is there a way for me to reference the task abc:foo as a requirement
where the ??? is?
Thanks.
James Edward Gray II
namespace :abc do
task :foo do
# ...
end
end
namespace :def do
task :bar => ??? do
# ...
end
end
Is there a way for me to reference the task abc:foo as a requirement
where the ??? is?
Thanks.
James Edward Gray II