Created
November 30, 2009 22:24
-
-
Save chriseppstein/245828 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :sass do | |
desc 'Updates stylesheets if necessary from their Sass templates.' | |
task :update => :environment do | |
sh "rm -rf public/stylesheets/compiled tmp/sass-cache" | |
Sass::Plugin.options[:never_update] = false | |
Sass::Plugin.update_stylesheets | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment