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

Commit

Permalink
Merge #6754
Browse files Browse the repository at this point in the history
6754: Add docs for configuring bundler folders through ENV vars r=colby-swandale a=colby-swandale

### Overview

This PR is just adding documentation for the feature in #6024.

Co-authored-by: Colby Swandale <me@colby.fyi>
(cherry picked from commit 97a0430)
  • Loading branch information
bundlerbot authored and colby-swandale committed Oct 24, 2018
1 parent 0f81f1a commit 8fd4d24
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions man/bundle-config.ronn
Expand Up @@ -381,3 +381,17 @@ This is especially useful for private repositories on hosts such as Github,
where you can use personal OAuth tokens:

export BUNDLE_GITHUB__COM=abcd0123generatedtoken:x-oauth-basic


## CONFIGURE BUNDLER DIRECTORIES

Bundler's home, config, cache and plugin directories are able to be configured
through environment variables. The default location for Bundler's home directory is
`~/.bundle`, which all directories inherit from by default. The following
outlines the available environment variables and their default values

BUNDLE_USER_HOME : $HOME/.bundle
BUNDLE_USER_CACHE : $BUNDLE_USER_HOME/cache
BUNDLE_USER_CONFIG : $BUNDLE_USER_HOME/config
BUNDLE_USER_PLUGIN : $BUNDLE_USER_HOME/plugin

0 comments on commit 8fd4d24

Please sign in to comment.