Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

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. [#1315]
  • Loading branch information
Simon Coffey committed Mar 4, 2014
1 parent 6a04e5b commit 0a81457
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 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,18 @@ 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`.

Bundler will ignore any `BUNDLE_GEMFILE` entries in local or global
configuration files.

## LOCAL GIT REPOS

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

0 comments on commit 0a81457

Please sign in to comment.