Skip to content

Commit

Permalink
Correct bundle-config manpage
Browse files Browse the repository at this point in the history
It is not possible to set BUNDLE_GEMFILE using bundle-config, so don't
tell users that it is. [rubygems#1315]
  • Loading branch information
Simon Coffey committed Mar 4, 2014
1 parent 6a04e5b commit 9b865b5
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions man/bundle-config.ronn
Expand Up @@ -86,12 +86,6 @@ learn more about their operation in [bundle install(1)][bundle-install].
* `bin` (`BUNDLE_BIN`):
Install executables from gems in the bundle to the specified directory.
Defaults to `false`.
* `gemfile` (`BUNDLE_GEMFILE`):
The name of the file that bundler should use as the `Gemfile`. This location
of this file also sets the root of the project, which is used to resolve
relative paths in the `Gemfile`, among other things. By default, bundler
will search up from the current working directory until it finds a
`Gemfile`.
* `ssl_ca_cert` (`BUNDLE_SSL_CA_CERT`):
Path to a designated CA certificate file or folder containing multiple
certificates for trusted CAs in PEM format.
Expand All @@ -106,6 +100,15 @@ You can set them globally either via environment variables or `bundle config`,
whichever is preferable for your setup. If you use both, environment variables
will take preference over global settings.

An additional setting is available only as an environment variable:

* `BUNDLE_GEMFILE`:
The name of the file that bundler should use as the `Gemfile`. This location
of this file also sets the root of the project, which is used to resolve
relative paths in the `Gemfile`, among other things. By default, bundler
will search up from the current working directory until it finds a
`Gemfile`.

## LOCAL GIT REPOS

Bundler also allows you to work against a git repository locally
Expand Down

0 comments on commit 9b865b5

Please sign in to comment.