Skip to content

Instantly share code, notes, and snippets.

@fguillen
Created December 13, 2011 17:58
Show Gist options
  • Save fguillen/1473130 to your computer and use it in GitHub Desktop.
Save fguillen/1473130 to your computer and use it in GitHub Desktop.
Compass rake task
namespace :compass do
desc 'Compile SCSS to CSS'
task :compile do
old_argv = ARGV
ARGV = []
load Gem.bin_path('compass', 'compass', ">=0")
ARGV = old_argv
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment