Skip to content

Instantly share code, notes, and snippets.

View cxyokk's full-sized avatar
💭
Foosball!

Andrew Chen cxyokk

💭
Foosball!
View GitHub Profile
@cxyokk
cxyokk / gulpfile.coffee
Created April 16, 2014 10:18
gulp compass
gulp = require 'gulp'
gutil = require 'gulp-util'
cp = require 'child_process'
q = require 'q'
gulp.task 'compass', ->
compassCmd = 'bundle exec compass compile --config compass.rb'
deferred = q.defer()
cp.exec compassCmd, (err, stdout, stderr)->
if err