From: James Edward Gray II Date: 2007-02-28T07:47:29+09:00 Subject: Rake Namespaces 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