test/data/namespace/Rakefile in rake-0.8.7 vs test/data/namespace/Rakefile in rake-0.9.0.beta.0
- old
+ new
@@ -53,5 +53,14 @@
file "xyz.rb" do
puts "XYZ2"
end
end
+namespace "scopedep" do
+ task :prepare do
+ touch "scopedep.rb"
+ puts "PREPARE"
+ end
+ file "scopedep.rb" => [:prepare] do
+ puts "SCOPEDEP"
+ end
+end