[rubygems/rubygems] Consistently access CLI flags with symbols

1497d3f146
This commit is contained in:
David Rodríguez 2025-06-26 21:50:40 +02:00 committed by Hiroshi SHIBATA
parent 70da38510f
commit 29ceefe595
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -77,7 +77,7 @@ module Bundler
self.options ||= {}
unprinted_warnings = Bundler.ui.unprinted_warnings
Bundler.ui = UI::Shell.new(options)
Bundler.ui.level = "debug" if options["verbose"]
Bundler.ui.level = "debug" if options[:verbose]
unprinted_warnings.each {|w| Bundler.ui.warn(w) }
end