Created
December 13, 2011 17:58
-
-
Save fguillen/1473130 to your computer and use it in GitHub Desktop.
Compass rake task
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 :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