summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorAgrim Mittal <agrimmittal97@gmail.com>2018-05-15 00:17:51 +0530
committerAgrim Mittal <agrimmittal97@gmail.com>2018-06-28 15:35:16 +0530
commit04bec1df4496091e377e52547854f64e901aa31d (patch)
tree46db38008c67496e589a4d43902b9f4bce127006 /man
parent90d6e849a3061b2bc16b660dc7f34f76016dd6e3 (diff)
downloadbundler-04bec1df4496091e377e52547854f64e901aa31d.tar.gz
Update documentation
Diffstat (limited to 'man')
-rw-r--r--man/bundle-remove.ronn13
1 files changed, 11 insertions, 2 deletions
diff --git a/man/bundle-remove.ronn b/man/bundle-remove.ronn
index 6dc518e14c..38a8673764 100644
--- a/man/bundle-remove.ronn
+++ b/man/bundle-remove.ronn
@@ -3,14 +3,23 @@ bundle-remove(1) -- Removes gem specified in Gemfile
## SYNOPSIS
-`bundle remove [GEMS]`
+`bundle remove [GEMS] [--install]`
## DESCRIPTION
-Removes a set of specified gems.
+Removes a set of specified gems from Gemfile or if needed from the bundle itself.
+If any gem specified to be removed does not exist the in Gemfile, Bundler prints error message.
+If gem could not be removed due to any reason Bundler warns the user.
+
+## OPTIONS
+
+* `--install`:
+ Remove gems from bundle.
Example:
bundle remove rails
bundle remove rails rack
+
+bundle remove rails rack --install