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

Commit

Permalink
Clarify BUNDLE_PATH documentation.
Browse files Browse the repository at this point in the history
* BUNDLE_PATH is used for installing AND finding gems
* When set
  * GEM_HOME and GEM_PATH are ignored
  * All gems are installed and retrieved from the BUNDLE_PATH location

[skip ci]
  • Loading branch information
jrafanie committed Jun 22, 2015
1 parent e8c962e commit 9b502a2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions man/bundle-config.ronn
Expand Up @@ -84,8 +84,10 @@ The following is a list of all configuration keys and their purpose. You can
learn more about their operation in [bundle install(1)][bundle-install].

* `path` (`BUNDLE_PATH`):
The location on disk to install gems. Defaults to `$GEM_HOME` in development
and `vendor/bundle` when `--deployment` is used
The location on disk where all gems in your bundle will be located regardless
of `$GEM_HOME` or `$GEM_PATH` values. Bundle gems not found in this location
will be installed by bundle install. Defaults to `Gem.dir`. When --deployment is
used, defaults to vendor/bundle.
* `frozen` (`BUNDLE_FROZEN`):
Disallow changes to the `Gemfile`. Defaults to `true` when `--deployment`
is used.
Expand Down

0 comments on commit 9b502a2

Please sign in to comment.