Guest User

Untitled

a guest
Apr 25th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. namespace :sass do
  2. desc 'Updates stylesheets if necessary from their Sass templates.'
  3. task :update => :environment do
  4. sh "rm -rf public/stylesheets/compiled tmp/sass-cache"
  5. Sass::Plugin.options[:never_update] = false
  6. Sass::Plugin.update_stylesheets
  7. end
  8. end
Add Comment
Please, Sign In to add comment