Skip to content

Instantly share code, notes, and snippets.

@simplethemes
Created March 31, 2013 03:03
Show Gist options
  • Save simplethemes/5279337 to your computer and use it in GitHub Desktop.
Save simplethemes/5279337 to your computer and use it in GitHub Desktop.
Guardfile for Sass + Compass + Livereload
# Guardfile
# More info at https://github.com/guard/guard#readme
guard 'livereload' do
watch(%r{.+\.(css|html)$})
end
guard 'sass',
:input => 'sass',
:output => 'css',
:load_paths => Dir.glob(File.join(Gem.dir, "gems", "compass*", "frameworks/compass/*"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment