From: "Stéphane Wirtel" Date: 2007-06-15T01:05:02+09:00 Subject: [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