add raketask for clearing test cache files

This commit is contained in:
Emil Tin 2014-10-17 15:13:06 +02:00
parent 93767d68f8
commit 2c87b295ff

View File

@ -181,3 +181,10 @@ end
desc "Stop, reprocess and restart."
task :update => [:down,:process,:up] do
end
desc "Remove test cache files."
task :sweep do
system "rm test/cache/*"
end