summaryrefslogtreecommitdiff
path: root/man/bundle-update.ronn
diff options
context:
space:
mode:
authorchrismo <chrismo@clabs.org>2016-10-24 18:01:00 -0500
committerchrismo <chrismo@clabs.org>2016-10-24 20:23:23 -0500
commit5b303e7d1a361369a8170172b1b95e2382dc9a55 (patch)
tree5141353170105b1b012afbadef674cc27a2bef56 /man/bundle-update.ronn
parent2e61117454ff3ef7f614ad003a87fcbafa975978 (diff)
downloadbundler-5b303e7d1a361369a8170172b1b95e2382dc9a55.tar.gz
Update bundle lock man page
Diffstat (limited to 'man/bundle-update.ronn')
-rw-r--r--man/bundle-update.ronn9
1 files changed, 4 insertions, 5 deletions
diff --git a/man/bundle-update.ronn b/man/bundle-update.ronn
index 1083c9db41..7986a17bdc 100644
--- a/man/bundle-update.ronn
+++ b/man/bundle-update.ronn
@@ -75,7 +75,6 @@ gem.
* `--conservative`:
Use bundle install conservative update behavior and do not allow shared dependencies to be updated.
-
## UPDATING ALL GEMS
If you run `bundle update` with no parameters, bundler will ignore
@@ -265,17 +264,17 @@ Given the following gem specifications:
foo 1.5.0, requires: ~> bar 2.1
foo 1.5.1, requires: ~> bar 3.0
bar with versions 2.0.3, 2.0.4, 2.1.0, 2.1.1, 3.0.0
-
+
Gemfile:
gem 'foo'
-
+
Gemfile.lock:
foo (1.4.3)
bar (~> 2.0)
bar (2.0.3)
-
+
Cases:
# Command Line Result
@@ -285,7 +284,7 @@ Cases:
3 bundle update --minor 'foo 1.5.1', 'bar 3.0.0'
4 bundle update --minor --strict 'foo 1.5.0', 'bar 2.1.1'
5 bundle update --patch --strict 'foo 1.4.4', 'bar 2.0.4'
-
+
In case 1, bar is upgraded to 2.1.1, a minor version increase, because
the dependency from foo 1.4.5 required it.