forked from wezm/wezm.net
8 lines
240 B
Ruby
8 lines
240 B
Ruby
# 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
|