summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2018-10-09 09:02:49 -0300
committerColby Swandale <me@colby.fyi>2018-10-12 15:49:35 +1100
commit3c11579a175cf29da636e85da22730d187949bcb (patch)
tree5394ab00a3c60c7b7925bb9d40c0699a1c1cdedf
parent4418d1b7147fb62b3cd100cb9f7f6811d9922503 (diff)
downloadbundler-3c11579a175cf29da636e85da22730d187949bcb.tar.gz
Still document the `--force` option
Only mention `--redownload` as an alias of it.
-rw-r--r--man/bundle-install.ronn6
-rw-r--r--man/bundle-update.ronn6
2 files changed, 6 insertions, 6 deletions
diff --git a/man/bundle-install.ronn b/man/bundle-install.ronn
index ca5e83192f..a9e375c87c 100644
--- a/man/bundle-install.ronn
+++ b/man/bundle-install.ronn
@@ -6,6 +6,7 @@ bundle-install(1) -- Install the dependencies specified in your Gemfile
`bundle install` [--binstubs[=DIRECTORY]]
[--clean]
[--deployment]
+ [--force]
[--frozen]
[--full-index]
[--gemfile=GEMFILE]
@@ -15,7 +16,6 @@ bundle-install(1) -- Install the dependencies specified in your Gemfile
[--no-prune]
[--path PATH]
[--quiet]
- [--redownload]
[--retry=NUMBER]
[--shebang]
[--standalone[=GROUP[ GROUP...]]]
@@ -64,9 +64,9 @@ time `bundle install` is run, use `bundle config` (see bundle-config(1)).
production or CI use. Please check carefully if you want to have this option
enabled in your development environment.
-* `--redownload`:
+* `--force`:
Force download every gem, even if the required versions are already available
- locally.
+ locally. `--redownload` is an alias of this option.
* `--frozen`:
Do not allow the Gemfile.lock to be updated after this install. Exits
diff --git a/man/bundle-update.ronn b/man/bundle-update.ronn
index 397fecadcb..481bb5b14e 100644
--- a/man/bundle-update.ronn
+++ b/man/bundle-update.ronn
@@ -12,8 +12,8 @@ bundle-update(1) -- Update your gems to the latest available versions
[--full-index]
[--jobs=JOBS]
[--quiet]
+ [--force]
[--patch|--minor|--major]
- [--redownload]
[--strict]
[--conservative]
@@ -64,8 +64,8 @@ gem.
* `--quiet`:
Only output warnings and errors.
-* `--redownload`:
- Force downloading every gem.
+* `--force`:
+ Force downloading every gem. `--redownload` is an alias of this option.
* `--patch`:
Prefer updating only to next patch version.