diff options
author | Homu <homu@barosl.com> | 2016-04-18 14:48:12 +0900 |
---|---|---|
committer | Homu <homu@barosl.com> | 2016-04-18 14:48:12 +0900 |
commit | 95788e22eac475927c8958ad6df6eaa753a416e6 (patch) | |
tree | 2fa28fb0c76a95e734e611c7ec1b2771bd01cfb9 | |
parent | 61f1c2313f5cc07fe389a2ec5d1931f8cc61b004 (diff) | |
parent | ba1d0c662932ffee99a34d221191912b4821a3f9 (diff) | |
download | bundler-95788e22eac475927c8958ad6df6eaa753a416e6.tar.gz |
Auto merge of #4443 - Nitrodist:update-bundle-install-documentation-with-frozen, r=segiddins
Update bundle install man page with --frozen option
This option has existed since v1.1 and we're currently on v1.11!
-rw-r--r-- | man/bundle-install.ronn | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/man/bundle-install.ronn b/man/bundle-install.ronn index efbf06d136..b5391fa024 100644 --- a/man/bundle-install.ronn +++ b/man/bundle-install.ronn @@ -11,6 +11,7 @@ bundle-install(1) -- Install the dependencies specified in your Gemfile [--local] [--deployment] [--force] + [--frozen] [--no-cache] [--no-prune] [--path PATH] @@ -86,6 +87,10 @@ update process below under [CONSERVATIVE UPDATING][]. Force download every gem, even if the required versions are already available locally. +* `--frozen`: + Do not allow the Gemfile.lock to be updated after this install. Exits + non-zero if there are going to be changes to the Gemfile.lock. + * `--system`: Installs the gems specified in the bundle to the system's Rubygems location. This overrides any previous [remembered][REMEMBERED OPTIONS] use of `--path`. |