Support for the Ruby 2.1 series ended on March 31 2017. See here for details.
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 34
def find_all req
res = []
name = req.dependency.name
@all[name].each do |uri, n|
if req.dependency.match? n then
res << Gem::Resolver::IndexSpecification.new(
self, n.name, n.version, uri, n.platform)
end
end
res
end