summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugh Bien <hugh@hughbien.com>2016-01-14 15:27:41 -0800
committerHugh Bien <hugh@hughbien.com>2016-01-14 15:27:41 -0800
commit7dac9375857be44e0540e24ee1e6bbb29802aef3 (patch)
tree0f08ef62aa869ce0b977b9c77bd49d5a89a520c2
parent5269344798ce686fdbaf262c6537f045293d48dd (diff)
downloadbundler-7dac9375857be44e0540e24ee1e6bbb29802aef3.tar.gz
Add docs for retry, redirect, and timeout configs.
-rw-r--r--man/bundle-config.ronn6
1 files changed, 6 insertions, 0 deletions
diff --git a/man/bundle-config.ronn b/man/bundle-config.ronn
index 5e1691b456..d617ae340b 100644
--- a/man/bundle-config.ronn
+++ b/man/bundle-config.ronn
@@ -117,6 +117,12 @@ learn more about their operation in [bundle install(1)][bundle-install].
* `ignore_messages` (`BUNDLE_IGNORE_MESSAGES`): When set, no post install
messages will be printed. To silence a single gem, use dot notation like
`ignore_messages.httparty true`.
+* `retry` (`BUNDLE_RETRY`):
+ The number of times to retry failed network requests. Defaults to `3`.
+* `redirect` (`BUNDLE_REDIRECT`):
+ The number of redirects allowed for network requests. Defaults to `5`.
+* `timeout` (`BUNDLE_TIMEOUT`):
+ The seconds allowed before timing out for network requests. Defaults to `10`.
In general, you should set these settings per-application by using the applicable
flag to the [bundle install(1)][bundle-install] or [bundle package(1)][bundle-package] command.