summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-04-01 02:29:47 +0100
committerAndre Arko <andre@arko.net>2015-04-01 02:29:47 +0100
commitf615524153ab9d6eee7a401544aa075d3f7a210e (patch)
treea26308a9d79cf3db0fef58bcbd8663f329e8ce21
parent5684b3e0f5fd081739a9df73b6a1c8392643a083 (diff)
parent0099e514118ff3561fdcaf090d9e0f5a9bed71ba (diff)
downloadbundler-f615524153ab9d6eee7a401544aa075d3f7a210e.tar.gz
Merge pull request #3451 from moeffju/update-man-pages
Update man-pages with new options
-rw-r--r--man/bundle-config.ronn8
-rw-r--r--man/bundle-install.ronn11
2 files changed, 16 insertions, 3 deletions
diff --git a/man/bundle-config.ronn b/man/bundle-config.ronn
index 8bbc5140e1..201672eb37 100644
--- a/man/bundle-config.ronn
+++ b/man/bundle-config.ronn
@@ -102,9 +102,15 @@ learn more about their operation in [bundle install(1)][bundle-install].
* `ssl_client_cert` (`BUNDLE_SSL_CLIENT_CERT`):
Path to a designated file containing a X.509 client certificate
and key in PEM format.
+* `cache_path` (`BUNDLE_CACHE_PATH`): The directory that bundler will place
+ cached gems in when running <code>bundle package</code>, and that bundler
+ will look in when installing gems.
+* `disable_multisource` (`BUNDLE_DISABLE_MULTISOURCE`): When set, Gemfiles
+ containing multiple sources will produce errors instead of warnings. Use
+ `bundle config --delete disable_multisource` to unset.
In general, you should set these settings per-application by using the applicable
-flag to the [bundle install(1)][bundle-install] command.
+flag to the [bundle install(1)][bundle-install] or [bundle package(1)][bundle-package] command.
You can set them globally either via environment variables or `bundle config`,
whichever is preferable for your setup. If you use both, environment variables
diff --git a/man/bundle-install.ronn b/man/bundle-install.ronn
index e9706b51bd..1e266ede17 100644
--- a/man/bundle-install.ronn
+++ b/man/bundle-install.ronn
@@ -8,10 +8,13 @@ bundle-install(1) -- Install the dependencies specified in your Gemfile
[--full-index]
[--gemfile=GEMFILE]
[--jobs=NUMBER]
- [--local] [--deployment]
+ [--frozen]
+ [--local]
+ [--deployment]
[--no-cache]
[--no-prune]
- [--path PATH] [--system]
+ [--path PATH]
+ [--system]
[--quiet]
[--retry=NUMBER]
[--shebang]
@@ -66,6 +69,10 @@ update process below under [CONSERVATIVE UPDATING][].
* `--jobs=[<number>]`:
Install gems by starting <number> of workers parallely.
+* `--frozen`:
+ Do not allow the Gemfile.lock to be updated after this install. Remembered in
+ the local configuration.
+
* `--local`:
Do not attempt to connect to `rubygems.org`. Instead, Bundler will use the
gems already present in Rubygems' cache or in `vendor/cache`. Note that if a