From dc6fdbb10676244a85add008e11c69a4afe4d586 Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Tue, 4 Mar 2014 16:21:57 +0000 Subject: [PATCH] Guardfile: fix bug with guarding of LWRP code --- Guardfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guardfile b/Guardfile index bdc7187..74c8988 100644 --- a/Guardfile +++ b/Guardfile @@ -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