summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
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