Guardfile: fix bug with guarding of LWRP code

This commit is contained in:
Adam Spiers 2014-03-04 16:21:57 +00:00
parent 0a037d00fd
commit dc6fdbb106

View File

@ -26,7 +26,7 @@ group :rspec do
}
watch(%r{^providers/common\.rb$}) { provider_specs }
watch(%r{^providers/(.*mixin.*)\.rb$}) { provider_specs }
watch(%r{^(resources|providers)/(.+)\.rb$}) { |m|
watch(%r{^(?:resources|providers)/(.+)\.rb$}) { |m|
"spec/providers/#{m[1]}_spec.rb"
}
end