summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2018-06-15 04:58:25 +0000
committerThe Bundler Bot <bot@bundler.io>2018-06-15 04:58:25 +0000
commit4eb981a5299c5b70697d99c522df1c48ee5d9278 (patch)
tree73b09d7f38bd2886fc9cafea18ce4f008f289ee6 /man
parente87e499f9461ee5e00ef2f3cad600dac82152934 (diff)
parent7dfae8427218e4015c714251a6dec0fa6a73a77b (diff)
downloadbundler-4eb981a5299c5b70697d99c522df1c48ee5d9278.tar.gz
Auto merge of #6531 - peret:outdated-filter-dependencies, r=segiddins
Add option to filter gem-dependencies from output of 'bundle outdated' Resolves #5366 by adding a new option '--filter-dependencies' to `bundle outdated`. When present, `outdated` will only check the `gemfile_specs` and skip the `dependency_specs`.
Diffstat (limited to 'man')
-rw-r--r--man/bundle-outdated.ronn4
1 files changed, 4 insertions, 0 deletions
diff --git a/man/bundle-outdated.ronn b/man/bundle-outdated.ronn
index 8b05af1e52..a991d23789 100644
--- a/man/bundle-outdated.ronn
+++ b/man/bundle-outdated.ronn
@@ -15,6 +15,7 @@ bundle-outdated(1) -- List installed gems with newer versions available
[--filter-major]
[--filter-minor]
[--filter-patch]
+ [--only-explicit]
## DESCRIPTION
@@ -67,6 +68,9 @@ are up to date, Bundler will exit with a status of 0. Otherwise, it will exit 1.
* `--filter-patch`:
Only list patch newer versions.
+* `--only-explicit`:
+ Only list gems specified in your Gemfile, not their dependencies.
+
## PATCH LEVEL OPTIONS
See [bundle update(1)](bundle-update.1.html) for details.