mirror of
https://github.com/ariejan/i6502.git
synced 2024-11-18 17:13:01 +00:00
10 lines
243 B
Ruby
10 lines
243 B
Ruby
# 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
|