From 45d683fd6e9c5bca6cdd0741fce1cf40db103f0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Maniaci?= Date: Tue, 9 Jul 2024 11:49:38 +0200 Subject: [PATCH] guard: only select the app's files https://github.com/betagouv/aplypro/commit/b108497b9cffc73d2eb809b7974766f3384abd8d --- Guardfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Guardfile b/Guardfile index 358a662..1134694 100644 --- a/Guardfile +++ b/Guardfile @@ -4,8 +4,8 @@ # More info at https://github.com/guard/guard#readme ## Uncomment and set this to only include directories you want to watch -# directories %w(app lib config test spec features) \ -# .select{|d| Dir.exist?(d) ? d : UI.warning("Directory #{d} does not exist")} +directories %w(app lib config test spec features) \ + .select{|d| Dir.exist?(d) ? d : UI.warning("Directory #{d} does not exist")} ## Note: if you are using the `directories` clause above and you are not ## watching the project directory ('.'), then you will want to move