summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-02-07 00:03:28 -0800
committerAndre Arko <andre@arko.net>2013-02-07 00:03:28 -0800
commit8287413cf0cdebb6c3abed06bc61c0e723df2401 (patch)
treeb51302f6390b318e56b814d1f141a9cc61304e4d /man
parent6debfa752a3e5b84c4602015bd75c3877dc3d461 (diff)
downloadbundler-8287413cf0cdebb6c3abed06bc61c0e723df2401.tar.gz
rename policy to trust-policy like gem, docs
Diffstat (limited to 'man')
-rw-r--r--man/bundle-install.ronn17
1 files changed, 16 insertions, 1 deletions
diff --git a/man/bundle-install.ronn b/man/bundle-install.ronn
index 9d169af5dd..29b3a90b4a 100644
--- a/man/bundle-install.ronn
+++ b/man/bundle-install.ronn
@@ -9,8 +9,9 @@ bundle-install(1) -- Install the dependencies specified in your Gemfile
[--local] [--deployment]
[--binstubs[=DIRECTORY]]
[--standalone[=GROUP1[ GROUP2...]]]
- [--quiet]
+ [--trust-policy=POLICY]
[--no-cache]
+ [--quiet]
## DESCRIPTION
@@ -82,11 +83,20 @@ update process below under [CONSERVATIVE UPDATING][].
`bundle` directory and installs the bundle there. It also generates
a `bundle/bundler/setup.rb` file to replace Bundler's own setup.
+* `--trust-policy=[<policy>]`:
+ Apply the Rubygems security policy named <policy>, where policy is one of
+ HighSecurity, MediumSecurity, LowSecurity, or NoSecurity. For more detail,
+ see the Rubygems signing documentation, linked below in [SEE ALSO][].
+
* `--no-cache`:
Do not update the cache in `vendor/cache` with the newly bundled gems. This
does not remove any existing cached gems, only stops the newly bundled gems
from being cached during the install.
+* `--quiet`:
+ Do not print progress information to stdout. Instead, communicate the
+ success of the install operation via exit status code.
+
## DEPLOYMENT MODE
Bundler's defaults are optimized for development. To switch to
@@ -333,3 +343,8 @@ which other gems in the Gemfile(5) still depend on, run
should first try to run `bundle install`, which will guarantee that no
other gems in the Gemfile(5) are impacted by the change. If that
does not work, run [bundle update(1)][bundle-update].
+
+## SEE ALSO
+
+* Gem install docs: http://docs.rubygems.org/read/chapter/2
+* Rubygems signing docs: http://docs.rubygems.org/read/chapter/21