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