Skip to content

Instantly share code, notes, and snippets.

@gorillawit
Last active December 18, 2015 13:48
Show Gist options
  • Save gorillawit/5792313 to your computer and use it in GitHub Desktop.
Save gorillawit/5792313 to your computer and use it in GitHub Desktop.
simple Guardfile for static sites
guard 'coffeescript', :input => '.', :output => 'js/'
guard 'haml', :output => "." do
watch('index.haml')
end
guard 'livereload' do
watch(%r{(js|html|css)$})
end
guard 'compass', :output => 'css/screen.css' do
watch('sass/style.scss')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment