summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
Diffstat (limited to 'man')
-rw-r--r--man/bundle-install.ronn13
1 files changed, 9 insertions, 4 deletions
diff --git a/man/bundle-install.ronn b/man/bundle-install.ronn
index 381b714ba9..4912ccd1b2 100644
--- a/man/bundle-install.ronn
+++ b/man/bundle-install.ronn
@@ -10,6 +10,7 @@ bundle-install(1) -- Install the dependencies specified in your Gemfile
[--jobs=NUMBER]
[--local]
[--deployment]
+ [--force]
[--no-cache]
[--no-prune]
[--path PATH]
@@ -77,8 +78,12 @@ update process below under [CONSERVATIVE UPDATING][].
* `--deployment`:
In [deployment mode][DEPLOYMENT MODE], Bundler will 'roll-out' the bundle for
- `production` use. Please check carefully if you want to have this option
- enabled in `development` or `test` environments.
+ production or CI use. Please check carefully if you want to have this option
+ enabled in your development environment.
+
+* `--force`:
+ Force download every gem, even if the required versions are already available
+ locally.
* `--system`:
Installs the gems specified in the bundle to the system's Rubygems location.
@@ -142,8 +147,8 @@ update process below under [CONSERVATIVE UPDATING][].
## DEPLOYMENT MODE
Bundler's defaults are optimized for development. To switch to
-defaults optimized for deployment, use the `--deployment` flag.
-Do not activate deployment mode on development machines, as it
+defaults optimized for deployment and for CI, use the `--deployment`
+flag. Do not activate deployment mode on development machines, as it
will cause an error when the Gemfile(5) is modified.
1. A `Gemfile.lock` is required.