[rubygems/rubygems] handle removing `BUNDLE_`, since using start_with? would still include that

https://github.com/rubygems/rubygems/commit/235d9b38d8
This commit is contained in:
Josh Nichols 2023-08-19 12:23:11 -04:00 коммит произвёл git
Родитель f0bf9391dc
Коммит e5efa01c7d
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -90,8 +90,10 @@ module Bundler
def initialize(root = nil)
@root = root
@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)
@temporary = {}