summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-01-17 12:46:19 -0800
committerHomu <homu@barosl.com>2016-01-17 12:46:19 -0800
commit340866ec79d91823d17467e3a17187ef7e260a66 (patch)
tree0a8a3d56369d638304d6274abd5cdd16af128f02
parent15a98915e568c7bde7e89ddd0e4ecd5bdd2f0b29 (diff)
parent7dac9375857be44e0540e24ee1e6bbb29802aef3 (diff)
downloadbundler-340866ec79d91823d17467e3a17187ef7e260a66.tar.gz
Auto merge of #4215 - hughbien:redirect-timeout-docs, r=indirect
Add docs for retry, redirect, and timeout configs. Updating the man pages for the new redirect/timeout configs. Also added retry, it's currently under the install page though. See #4205 I just placed items these at the bottom of the list, but let me know if you'd prefer a different order or description. Thanks!
-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.