From: "Marcel Molina Jr." Date: 2007-02-28T07:54:04+09:00 Subject: Re: Rake Namespaces On Wed, Feb 28, 2007 at 07:47:29AM +0900, James Edward Gray II wrote: > 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? Sure, just provide a fully qualified task name: namespace :def do task :bar => 'abc:foo' do # ... end end marcel -- Marcel Molina Jr.