savory_theme 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
data/lib/savory/theme/bom.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require 'fileutils'
|
2
|
+
|
1
3
|
module Savory::Theme
|
2
4
|
class Packager
|
3
5
|
class Features
|
@@ -19,6 +21,10 @@ module Savory::Theme
|
|
19
21
|
raise "Failed: #{$!}"
|
20
22
|
end
|
21
23
|
end
|
24
|
+
|
25
|
+
def clean(theme)
|
26
|
+
FileUtils.rm_rf(".sass-cache", :secure => true, :verbose => @packager.verbose)
|
27
|
+
end
|
22
28
|
end
|
23
29
|
|
24
30
|
add_feature(Sass)
|
data/lib/savory/theme/version.rb
CHANGED