From 82f7d92ef00705a2dd0603a2440063f51913a8bb Mon Sep 17 00:00:00 2001 From: Jon Frisby Date: Wed, 20 Feb 2013 11:56:54 -0800 Subject: [PATCH] Add 'clobber' task for purging generated files. --- Rakefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Rakefile b/Rakefile index b5a2737..68ba3a3 100644 --- a/Rakefile +++ b/Rakefile @@ -223,6 +223,11 @@ task :clean do puts "## Cleaned Sass, Pygments and Gist caches, removed generated stylesheets ##" end +desc "Remove generated files (#{configuration[:destination]} directory)." +task :clobber do + rm_rf [configuration[:destination]] +end + desc "Update theme source and style" task :update, :theme do |t, args| theme = args.theme || 'classic'