[Rake] call a task of a namespace from an other task.
by Stephane Wirtel other posts by this author
Jun 14 2007 9:06AM messages near this date
Re: help
|
Re: [Rake] call a task of a namespace from an other task.
Hi all,
I try to call a task of a namespace from an other task !
Exemple:
ReleaseDirectory = File.join( "d:", "release" )
namespace :release do
task :create do
mkdir_p ReleaseDirectory, QUIET
end
end
namespace :kernel do
task :compile do
end
task :release => [ ???? ] do
end
end
"????" What can I put ? I would like to use the task ":create" of the
namespace ":release". Is there a way to resolve my problem ?
Thanks
Stephane Wirtel
Thread:
Stephane Wirtel
Bob Showalter
Stephane Wirtel
Stephane Wirtel
|