From 6aac51f6f0576e5774aa39449661f96bfa595fe8 Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Mon, 5 Dec 2011 15:04:58 -0800 Subject: [PATCH] Tell Guard that we REALLY want to know about ALL changes --- lib/middleman/guard.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/middleman/guard.rb b/lib/middleman/guard.rb index d4924cf9..51a117ff 100644 --- a/lib/middleman/guard.rb +++ b/lib/middleman/guard.rb @@ -27,7 +27,10 @@ module Middleman end } - ::Guard.start({ :guardfile_contents => guardfile_contents }) + ::Guard.start({ + :guardfile_contents => guardfile_contents, + :watch_all_modifications => true + }) end end end