Support for the Ruby 2.4 series has ended. See here for reference.
![show/hide quicksearch [+]](../../images/find.png)
The global rubygems pool represented via the traditional source index.
Return an array of IndexSpecification objects matching DependencyRequest req.
 
               # File rubygems/resolver/index_set.rb, line 39
def find_all req
  res = []
  return res unless @remote
  name = req.dependency.name
  @all[name].each do |uri, n|
    if req.match? n, @prerelease then
      res << Gem::Resolver::IndexSpecification.new(
        self, n.name, n.version, uri, n.platform)
    end
  end
  res
end