Skip to content

Commit

Permalink
added Guardfile for livereload
Browse files Browse the repository at this point in the history
  • Loading branch information
Niels van Dijk committed Aug 24, 2012
1 parent 9755fae commit 59176f3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/Guardfile
@@ -0,0 +1,22 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
#
# Installation requirements:
#
# gem install guard-livereload guard-compass
#
# Browser plugins:
# All: http://help.livereload.com/kb/general-use/browser-extensions
# Firefox (2.0.9 dev release): https://github.com/siasia/livereload-extensions/downloads
#

notification :off

guard 'compass' do
watch(%r{(.*)\.s[ac]ss$})
end

guard 'livereload' do
watch(%r{.+\.(css|js|html)$})
#watch(%r{.+\.(css|js|html|pyc)$})
end

0 comments on commit 59176f3

Please sign in to comment.