diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-03-16 12:23:40 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-03-17 18:50:55 +0900 |
commit | f4d1f660d0c60072813fa46b0e704561ff8e20fe (patch) | |
tree | a897e6e65e76c734637fbe37b9a48c148975b034 /lib | |
parent | ae81ff0c9b120d1d2ee4b0d1400cf1358c81f86f (diff) |
[rubygems/rubygems] util/rubocop -A --only Layout/SpaceInsideRangeLiteral
https://github.com/rubygems/rubygems/commit/426dd97a31
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rubygems/spec_fetcher.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rubygems/spec_fetcher.rb b/lib/rubygems/spec_fetcher.rb index 0a34b28f0d..23f2d982d6 100644 --- a/lib/rubygems/spec_fetcher.rb +++ b/lib/rubygems/spec_fetcher.rb @@ -91,9 +91,9 @@ class Gem::SpecFetcher list.each do |source, specs| if dependency.name.is_a?(String) && specs.respond_to?(:bsearch) - start_index = (0 ... specs.length).bsearch {|i| specs[i].name >= dependency.name } - end_index = (0 ... specs.length).bsearch {|i| specs[i].name > dependency.name } - specs = specs[start_index ... end_index] if start_index && end_index + start_index = (0...specs.length).bsearch {|i| specs[i].name >= dependency.name } + end_index = (0...specs.length).bsearch {|i| specs[i].name > dependency.name } + specs = specs[start_index...end_index] if start_index && end_index end found[source] = specs.select do |tup| |