summaryrefslogtreecommitdiff
path: root/man/bundle-lock.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-lock.ronn
parent2e61117454ff3ef7f614ad003a87fcbafa975978 (diff)
downloadbundler-5b303e7d1a361369a8170172b1b95e2382dc9a55.tar.gz
Update bundle lock man page
Diffstat (limited to 'man/bundle-lock.ronn')
-rw-r--r--man/bundle-lock.ronn36
1 files changed, 36 insertions, 0 deletions
diff --git a/man/bundle-lock.ronn b/man/bundle-lock.ronn
index 8afc50af8a..b18d819c21 100644
--- a/man/bundle-lock.ronn
+++ b/man/bundle-lock.ronn
@@ -7,6 +7,14 @@ bundle-lock(1) -- Creates / Updates a lockfile without installing
[--local]
[--print]
[--lockfile=PATH]
+ [--full-index]
+ [--add-platform]
+ [--remove-platform]
+ [--patch]
+ [--minor]
+ [--major]
+ [--strict]
+ [--conservative]
## DESCRIPTION
@@ -30,6 +38,30 @@ Lock the gems specified in Gemfile.
* `--lockfile=<path>`:
The path where the lockfile should be written to.
+* `--full-index`:
+ Fall back to using the single-file index of all gems.
+
+* `--add-platform`:
+ Add a new platform to the lockfile.
+
+* `--remove-platform`:
+ Remove a platform from the lockfile.
+
+* `--patch`:
+ If updating, prefer updating only to next patch version.
+
+* `--minor`:
+ If updating, prefer updating only to next minor version.
+
+* `--major`:
+ If updating, prefer updating to next major version (default).
+
+* `--strict`:
+ If updating, do not allow any gem to be updated past latest --patch | --minor | --major.
+
+* `--conservative`:
+ If updating, use bundle install conservative update behavior and do not allow shared dependencies to be updated.
+
## UPDATING ALL GEMS
If you run `bundle lock` with `--update` option without list of gems, bundler will
@@ -45,3 +77,7 @@ For instance, you only want to update `nokogiri`, run `bundle lock --update noko
Bundler will update `nokogiri` and any of its dependencies, but leave the rest of the
gems that you specified locked to the versions in the `Gemfile.lock`.
+
+## PATCH LEVEL OPTIONS
+
+See [bundle update(1)][bundle-update] for details.