mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 11:48:17 +00:00
23 lines
435 B
Ruby
23 lines
435 B
Ruby
notification :off
|
|
|
|
scope group: :spec
|
|
|
|
group :spec do
|
|
guard :rake, :task => 'test' do
|
|
watch(%r{^lib\/.+\.rb$})
|
|
watch(%r{^spec\/.+\.rb$})
|
|
watch(%r{^manifests\/.+\.pp$})
|
|
end
|
|
end
|
|
|
|
group :acceptance do
|
|
guard :rake, :task => 'acceptance' do
|
|
watch(%r{^spec\/acceptance\/.+\.rb$})
|
|
end
|
|
end
|
|
|
|
group :acceptance_swarm do
|
|
guard :rake, :task => 'acceptance_swarm' do
|
|
watch(%r{^spec\/acceptance_swarm\/.+\.rb$})
|
|
end
|
|
end |