Add Guardfile for continuious testing

This commit is contained in:
Ariejan de Vroom 2014-08-13 11:49:33 +02:00
parent e96ce1e84a
commit c8d2f31a65
1 changed files with 9 additions and 0 deletions

9
Guardfile Normal file
View File

@ -0,0 +1,9 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
# Add files and commands to this file, like the example:
# watch(%r{file/path}) { `command(s)` }
#
guard 'go', test: true, server: 'cpu.go' do
watch(%r{\.go$})
end