From 2c87b295ff49b0d74f855b91c7e68da99b1b6893 Mon Sep 17 00:00:00 2001 From: Emil Tin Date: Fri, 17 Oct 2014 15:13:06 +0200 Subject: [PATCH] add raketask for clearing test cache files --- Rakefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Rakefile b/Rakefile index 21e95cfb2..1c848bb07 100644 --- a/Rakefile +++ b/Rakefile @@ -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 +