1

Add 'guard-livereload' gem to auto reload the browser when 'view' files are modified.

This commit is contained in:
vonavi
2014-02-18 16:52:18 +02:00
parent 70b894aa06
commit d037749df8
4 changed files with 43 additions and 6 deletions

6
Guardfile Normal file
View File

@@ -0,0 +1,6 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
guard 'livereload' do
watch(%r{public/.+\.(css|js|html)})
end