E-learning-Server/Guardfile
2014-07-26 20:45:27 -07:00

19 lines
416 B
Ruby

# A sample Guardfile
# More info at https://github.com/guard/guard#readme
group :development do
gem 'guard-livereload', require: false
end
# Add files and commands to this file, like the example:
# watch(%r{file/path}) { `command(s)` }
#
guard :shell do
watch(%r{htdocs/.+\.(php)}) { 'phpdoc -d ./htdocs/lib -t ./docs/' }
end
# LiveReload
guard 'livereload' do
watch(%r{htdocs/.+\.(php|css|js|html)})
end