summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorAgrim Mittal <agrimmittal97@gmail.com>2018-06-11 11:36:22 +0530
committerAgrim Mittal <agrimmittal97@gmail.com>2018-06-15 13:58:26 +0530
commit9d9528eb6a7c0bfe04452594f65e4329aadf5809 (patch)
tree45951d9c34ee84cd02a9ff820cbe2eeda843ad94 /man
parentc250318a3863c38c697f985cdb75881b03b34e62 (diff)
downloadbundler-9d9528eb6a7c0bfe04452594f65e4329aadf5809.tar.gz
Add documentation for bundle list without and only options
Diffstat (limited to 'man')
-rw-r--r--man/bundle-list.ronn18
1 files changed, 17 insertions, 1 deletions
diff --git a/man/bundle-list.ronn b/man/bundle-list.ronn
index b7a9d3f786..27d9d6669a 100644
--- a/man/bundle-list.ronn
+++ b/man/bundle-list.ronn
@@ -3,15 +3,31 @@ bundle-list(1) -- List all the gems in the bundle
## SYNOPSIS
-`bundle list` [--name-only]
+`bundle list` [--name-only] [--paths] [--without=GROUP] [--only=GROUP]
## DESCRIPTION
Prints a list of all the gems in the bundle including their version.
+Example:
+
+bundle list --name-only
+
+bundle list --paths
+
+bundle list --without test
+
+bundle list --only dev
+
+bundle list --only dev --paths
+
## OPTIONS
* `--name-only`:
Print only the name of each gem.
* `--paths`:
Print the path to each gem in the bundle.
+* `--without`:
+ Print all gems expect from a group.
+* `--only`:
+ Print gems from a particular group.