summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorAgrim Mittal <agrimmittal97@gmail.com>2018-06-17 15:24:51 +0530
committerAgrim Mittal <agrimmittal97@gmail.com>2018-06-17 15:24:51 +0530
commit4d324525510c1ad662c0e1c032cca8ea21356586 (patch)
tree203aef6047103da0b4b02b62503bbc514d9c0534 /man
parentf482ded7d8591ed2952ad0308aaec6b8bd8fb12b (diff)
downloadbundler-4d324525510c1ad662c0e1c032cca8ea21356586.tar.gz
Change options to --without-group and --only-group
Improves understanding of the options without need to look up the docs.
Diffstat (limited to 'man')
-rw-r--r--man/bundle-list.ronn12
1 files changed, 6 insertions, 6 deletions
diff --git a/man/bundle-list.ronn b/man/bundle-list.ronn
index 27d9d6669a..120cf5e307 100644
--- a/man/bundle-list.ronn
+++ b/man/bundle-list.ronn
@@ -3,7 +3,7 @@ bundle-list(1) -- List all the gems in the bundle
## SYNOPSIS
-`bundle list` [--name-only] [--paths] [--without=GROUP] [--only=GROUP]
+`bundle list` [--name-only] [--paths] [--without-group=GROUP] [--only-group=GROUP]
## DESCRIPTION
@@ -15,11 +15,11 @@ bundle list --name-only
bundle list --paths
-bundle list --without test
+bundle list --without-group test
-bundle list --only dev
+bundle list --only-group dev
-bundle list --only dev --paths
+bundle list --only-group dev --paths
## OPTIONS
@@ -27,7 +27,7 @@ bundle list --only dev --paths
Print only the name of each gem.
* `--paths`:
Print the path to each gem in the bundle.
-* `--without`:
+* `--without-group`:
Print all gems expect from a group.
-* `--only`:
+* `--only-group`:
Print gems from a particular group.