Skip to content

Instantly share code, notes, and snippets.

@juliocesar
Created August 10, 2012 02:06
Show Gist options
  • Save juliocesar/3310363 to your computer and use it in GitHub Desktop.
Save juliocesar/3310363 to your computer and use it in GitHub Desktop.
Poor man's dev suite
task :run do
rackup = Thread.start { `rackup -p 4567` }
compass = Thread.start { `compass watch --sass-dir sass --css-dir css` }
# ...
at_exit { Thread.kill(rackup) and Thread.kill(compass) }
sleep
end
# In the console, just run:
# $ rake run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment