vagrant-lxc-ng/Guardfile

8 lines
332 B
Plaintext
Raw Permalink Normal View History

2013-05-17 21:49:33 +00:00
guard 'rspec', :spec_paths => ["spec/unit"] do
watch(%r{^spec/unit/.+_spec\.rb$})
2013-02-28 03:06:29 +00:00
watch(%r{^lib/vagrant-lxc/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" }
watch('spec/unit_helper.rb') { "spec/unit" }
2013-05-17 21:49:33 +00:00
watch('spec/spec_helper.rb') { "spec/unit" }
watch(%r{^spec/support/(.+)\.rb$}) { "spec/unit" }
2013-02-25 04:58:04 +00:00
end