." generated with Ronn/v0.7.3 ." github.com/rtomayko/ronn/tree/0.7.3 . .TH “BUNDLE-CONFIG” “1” “July 2015” “” “” . .SH “NAME” fBbundle-configfR - Set bundler configuration options . .SH “SYNOPSIS” fBbundle configfR [fInamefR [fIvaluefR]] . .SH “DESCRIPTION” This command allows you to interact with bundler's configuration system. Bundler retrieves its configuration from the local application (fBapp/.bundle/configfR), environment variables, and the user's home directory (fB~/.bundle/configfR), in that order of priority. . .P Executing fBbundle configfR with no parameters will print a list of all bundler configuration for the current bundle, and where that configuration was set. . .P Executing fBbundle config <name>fR will print the value of that configuration setting, and where it was set. . .P Executing fBbundle config <name> <value>fR will set that configuration to the value specified for all bundles executed as the current user. The configuration will be stored in fB~/.bundle/configfR. If fInamefR already is set, fInamefR will be overridden and user will be warned. . .P Executing fBbundle config --global <name> <value>fR works the same as above. . .P Executing fBbundle config --local <name> <value>fR will set that configuration to the local application. The configuration will be stored in fBapp/.bundle/configfR. . .P Executing fBbundle config --delete <name>fR will delete the configuration in both local and global sources. Not compatible with --global or --local flag. . .P Executing bundle with the fBBUNDLE_IGNORE_CONFIGfR environment variable set will cause it to ignore all configuration. . .P Executing fBbundle config disable_multisource truefR upgrades the warning about the Gemfile containing multiple primary sources to an error. Executing fBbundle config --delete disable_multisourcefR downgrades this error to a warning. . .SH “BUILD OPTIONS” You can use fBbundle configfR to give bundler the flags to pass to the gem installer every time bundler tries to install a particular gem. . .P A very common example, the fBmysqlfR gem, requires Snow Leopard users to pass configuration flags to fBgem installfR to specify where to find the fBmysql_configfR executable. . .IP “” 4 . .nf
gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config . .fi . .IP “” 0 . .P Since the specific location of that executable can change from machine to machine, you can specify these flags on a per-machine basis. . .IP “” 4 . .nf
bundle config build.mysql --with-mysql-config=/usr/local/mysql/bin/mysql_config . .fi . .IP “” 0 . .P After running this command, every time bundler needs to install the fBmysqlfR gem, it will pass along the flags you specified. . .SH “CONFIGURATION KEYS” Configuration keys in bundler have two forms: the canonical form and the environment variable form. . .P For instance, passing the fB--withoutfR flag to bundle install(1) fIbundle-install.1.htmlfR prevents Bundler from installing certain groups specified in the Gemfile(5). Bundler persists this value in fBapp/.bundle/configfR so that calls to fBBundler.setupfR do not try to find gems from the fBGemfilefR that you didn't install. Additionally, subsequent calls to bundle install(1) fIbundle-install.1.htmlfR remember this setting and skip those groups. . .P The canonical form of this configuration is fB“without”fR. To convert the canonical form to the environment variable form, capitalize it, and prepend fBBUNDLE_fR. The environment variable form of fB“without”fR is fBBUNDLE_WITHOUTfR. . .P Any periods in the configuration keys must be replaced with two underscores when setting it via environment variables. The configuration key fBlocal.rackfR becomes the environment variable fBBUNDLE_LOCAL__RACKfR. . .SH “LIST OF AVAILABLE KEYS” The following is a list of all configuration keys and their purpose. You can learn more about their operation in bundle install(1) fIbundle-install.1.htmlfR. . .IP “(bu” 4 fBpathfR (fBBUNDLE_PATHfR): The location on disk to install gems. Defaults to fB$GEM_HOMEfR in development and fBvendor/bundlefR when fB--deploymentfR is used . .IP “(bu” 4 fBfrozenfR (fBBUNDLE_FROZENfR): Disallow changes to the fBGemfilefR. Defaults to fBtruefR when fB--deploymentfR is used. . .IP “(bu” 4 fBwithoutfR (fBBUNDLE_WITHOUTfR): A fB:fR-separated list of groups whose gems bundler should not install . .IP “(bu” 4 fBbinfR (fBBUNDLE_BINfR): Install executables from gems in the bundle to the specified directory. Defaults to fBfalsefR. . .IP “(bu” 4 fBgemfilefR (fBBUNDLE_GEMFILEfR): The name of the file that bundler should use as the fBGemfilefR. This location of this file also sets the root of the project, which is used to resolve relative paths in the fBGemfilefR, among other things. By default, bundler will search up from the current working directory until it finds a fBGemfilefR. . .IP “(bu” 4 fBssl_ca_certfR (fBBUNDLE_SSL_CA_CERTfR): Path to a designated CA certificate file or folder containing multiple certificates for trusted CAs in PEM format. . .IP “(bu” 4 fBssl_client_certfR (fBBUNDLE_SSL_CLIENT_CERTfR): Path to a designated file containing a X.509 client certificate and key in PEM format. . .IP “(bu” 4 fBcache_pathfR (fBBUNDLE_CACHE_PATHfR): The directory that bundler will place cached gems in when running fBbundle packagefR, and that bundler will look in when installing gems. . .IP “(bu” 4 fBdisable_multisourcefR (fBBUNDLE_DISABLE_MULTISOURCEfR): When set, Gemfiles containing multiple sources will produce errors instead of warnings. Use fBbundle config --delete disable_multisourcefR to unset. . .IP “(bu” 4 fBignore_messagesfR (fBBUNDLE_IGNORE_MESSAGESfR): When set, no post install messages will be printed. To silence a single gem, use dot notation like fBignore_messages.httparty truefR. . .IP “” 0 . .P In general, you should set these settings per-application by using the applicable flag to the bundle install(1) fIbundle-install.1.htmlfR or bundle package(1) fIbundle-package.1.htmlfR command. . .P You can set them globally either via environment variables or fBbundle configfR, whichever is preferable for your setup. If you use both, environment variables will take preference over global settings. . .SH “LOCAL GIT REPOS” Bundler also allows you to work against a git repository locally instead of using the remote version. This can be achieved by setting up a local override: . .IP “” 4 . .nf
bundle config local.GEM_NAME /path/to/local/git/repository . .fi . .IP “” 0 . .P For example, in order to use a local Rack repository, a developer could call: . .IP “” 4 . .nf
bundle config local.rack ~/Work/git/rack . .fi . .IP “” 0 . .P Now instead of checking out the remote git repository, the local override will be used. Similar to a path source, every time the local git repository change, changes will be automatically picked up by Bundler. This means a commit in the local git repo will update the revision in the fBGemfile.lockfR to the local git repo revision. This requires the same attention as git submodules. Before pushing to the remote, you need to ensure the local override was pushed, otherwise you may point to a commit that only exists in your local machine. . .P Bundler does many checks to ensure a developer won't work with invalid references. Particularly, we force a developer to specify a branch in the fBGemfilefR in order to use this feature. If the branch specified in the fBGemfilefR and the current branch in the local git repository do not match, Bundler will abort. This ensures that a developer is always working against the correct branches, and prevents accidental locking to a different branch. . .P Finally, Bundler also ensures that the current revision in the fBGemfile.lockfR exists in the local git repository. By doing this, Bundler forces you to fetch the latest changes in the remotes. . .SH “MIRRORS OF GEM SOURCES” Bundler supports overriding gem sources with mirrors. This allows you to configure rubygems.org as the gem source in your Gemfile while still using your mirror to fetch gems. . .IP “” 4 . .nf
bundle config mirror.SOURCE_URL MIRROR_URL . .fi . .IP “” 0 . .P For example, to use a mirror of rubygems.org hosted at . .IP “” 4 . .nf
bundle config mirror.rubygems.org rubygems-mirror.org . .fi . .IP “” 0 . .SH “CREDENTIALS FOR GEM SOURCES” Bundler allows you to configure credentials for any gem source, which allows you to avoid putting secrets into your Gemfile. . .IP “” 4 . .nf
bundle config SOURCE_HOSTNAME USERNAME:PASSWORD . .fi . .IP “” 0 . .P For example, to save the credentials of user fBclaudettefR for the gem source at fBgems.longerous.comfR, you would run: . .IP “” 4 . .nf
bundle config gems.longerous.com claudette:s00pers3krit . .fi . .IP “” 0 . .P Or you can set the credentials as an environment variable like this: . .IP “” 4 . .nf
export BUNDLE_GEMS__LONGEROUS__COM=“claudette:s00pers3krit” . .fi . .IP “” 0