mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-09 17:32:33 +00:00
9 lines
240 B
Text
9 lines
240 B
Text
|
# A sample Guardfile
|
||
|
# More info at https://github.com/guard/guard#readme
|
||
|
|
||
|
guard 'nanoc' do
|
||
|
watch('nanoc.yaml') # Change this to config.yaml if you use the old config file name
|
||
|
watch('Rules')
|
||
|
watch(%r{^(content|layouts|lib)/.*$})
|
||
|
end
|