diff options
| author | Josh Nichols <josh.nichols@gusto.com> | 2023-08-19 12:33:44 -0400 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2023-08-20 09:07:11 +0000 |
| commit | 35442005132e60a728b59f0811da10fba95a851e (patch) | |
| tree | 40f71ddb944ff236952e5a9667162646723a63c7 /lib | |
| parent | 7c4431e61cc00107af59a9f1c0a835a1405dda9f (diff) | |
[rubygems/rubygems] fix lint
https://github.com/rubygems/rubygems/commit/75c0f27b7e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/bundler/settings.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/settings.rb b/lib/bundler/settings.rb index fe62c85f58..f5999481a8 100644 --- a/lib/bundler/settings.rb +++ b/lib/bundler/settings.rb @@ -92,7 +92,7 @@ module Bundler @local_config = load_config(local_config_file) @env_config = ENV.to_h - @env_config.select! {|key, _value| key.start_with?("BUNDLE_")} + @env_config.select! {|key, _value| key.start_with?("BUNDLE_") } @env_config.delete("BUNDLE_") @global_config = load_config(global_config_file) |
