aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/settings.rb
diff options
context:
space:
mode:
authorAsutosh Palai <asupalai@gmail.com>2016-06-10 11:37:09 +0530
committerAsutosh Palai <asupalai@gmail.com>2016-06-10 11:37:11 +0530
commit0aaa3f3a9b236acfc5198196c845cc9d6320ce30 (patch)
treefec0a5852306c660e34bc84981d2734871619b3d /lib/bundler/settings.rb
parentb126b40bbddf8af631b949ffdc7e20ab64f75c6a (diff)
downloadbundler-0aaa3f3a9b236acfc5198196c845cc9d6320ce30.tar.gz
Included plugins in bool_keys for settings
Diffstat (limited to 'lib/bundler/settings.rb')
-rw-r--r--lib/bundler/settings.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/settings.rb b/lib/bundler/settings.rb
index 72d37a89..0dd1d762 100644
--- a/lib/bundler/settings.rb
+++ b/lib/bundler/settings.rb
@@ -3,7 +3,7 @@ require "uri"
module Bundler
class Settings
- BOOL_KEYS = %w(frozen cache_all no_prune disable_local_branch_check disable_shared_gems ignore_messages gem.mit gem.coc silence_root_warning no_install).freeze
+ BOOL_KEYS = %w(frozen cache_all no_prune disable_local_branch_check disable_shared_gems ignore_messages gem.mit gem.coc silence_root_warning no_install plugins).freeze
NUMBER_KEYS = %w(retry timeout redirect ssl_verify_mode).freeze
DEFAULT_CONFIG = { :retry => 3, :timeout => 10, :redirect => 5 }.freeze