Skip to content

Instantly share code, notes, and snippets.

@chriseppstein
Created November 30, 2009 22:24
Show Gist options
  • Save chriseppstein/245828 to your computer and use it in GitHub Desktop.
Save chriseppstein/245828 to your computer and use it in GitHub Desktop.
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