From bbe42f9d237813232596b4b2f87a9ea94dff171c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= Date: Sun, 19 Jun 2011 02:54:17 -0700 Subject: [PATCH] Added informations on the --debug option! --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 674f13c..fa88042 100644 --- a/README.md +++ b/README.md @@ -141,14 +141,21 @@ $ guard -n f # shortcut Notifications can also be disabled globally by setting a `GUARD_NOTIFY` environment variable to `false` -The guards to start can be specified by group (see the Guardfile DSL below) specifying the `--group` (or `-g`) option: +Only certain guards groups can be run (see the Guardfile DSL below for creating groups) by specifying the `--group` (or `-g`) option: ``` bash $ guard --group group_name another_group_name $ guard -g group_name another_group_name # shortcut ``` -Options list is available with: +Guard can be run in debug mode by specifying the `--debug` (or `-d`) option: + +``` bash +$ guard --debug +$ guard -d # shortcut +``` + +An exhaustive list of options is available with: ``` bash $ guard help [TASK]