diff options
author | The Bundler Bot <bot@bundler.io> | 2017-08-12 14:18:37 +0000 |
---|---|---|
committer | The Bundler Bot <bot@bundler.io> | 2017-08-12 14:18:37 +0000 |
commit | 76b251b03dc7ffea7e45bd3c6ea2c75ebf5c523d (patch) | |
tree | a06b933bec92f4eba2ada03e2e829602d67686b9 /lib/bundler/settings.rb | |
parent | 66facbb67665f30e97db2b2c4c9c127399e9a935 (diff) | |
parent | c9c4f23e46673ac953b34774934447c779b25e0b (diff) | |
download | bundler-76b251b03dc7ffea7e45bd3c6ea2c75ebf5c523d.tar.gz |
Auto merge of #5658 - adrian-gomez:passowrds_on_remotes, r=segiddins
Allow to add username and password to a remote during a deployment
This is my first PR to bundler, so if something is out of place let me know and I'll do my best to correct it.
The issue I'm trying to fix is allowing to change a remote on a frozen bundler for the same remote adding username and password.
In our dev boxes we have configured bundle to store the username and password for a given domain, but on our qa boxes we don't want to do that for various reasons.
As far as I can tell this should not have any negative side effects as we are keeping the same remote but only adding some auth to it
Diffstat (limited to 'lib/bundler/settings.rb')
-rw-r--r-- | lib/bundler/settings.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bundler/settings.rb b/lib/bundler/settings.rb index a23264ecf4..d19cc18dd6 100644 --- a/lib/bundler/settings.rb +++ b/lib/bundler/settings.rb @@ -10,6 +10,7 @@ module Bundler BOOL_KEYS = %w[ allow_bundler_dependency_conflicts + allow_deployment_source_credential_changes allow_offline_install auto_install cache_all |