summaryrefslogtreecommitdiff
path: root/lib/rubygems/command.rb
diff options
context:
space:
mode:
authorOlle Jonsson <[email protected]>2020-04-19 22:39:42 +0200
committerHiroshi SHIBATA <[email protected]>2020-06-05 07:32:42 +0900
commit5eacf4e72cffadde3c4c2b6dada6cd5343310ae3 ()
treee5e98963fa1a51886eaea7ba84201e05ee545e83 /lib/rubygems/command.rb
parentf8f5e7fadf689a11a8ee28b7af4e7777e2dec1ea (diff)
Enable rubocop-performance StartWith cop
- this would keep the could-be-a-string-method matches few
Notes: Merged: https://.com/ruby/ruby/pull/3184
-rw-r--r--lib/rubygems/command.rb4
1 files changed, 1 insertions, 3 deletions
@@ -456,9 +456,7 @@ class Gem::Command
until extra.empty? do
ex = []
ex << extra.shift
- if (!extra.first.to_s.empty? && !extra.first.to_s.start_with?("-"))
- ex << extra.shift
- end
result << ex if handles?(ex)
end