Used by the Resolver,
the protocol to use a AvailableSet as a search Set.
# File lib/rubygems/available_set.rb, line 126
def find_all(req)
dep = req.dependency
match = @set.find_all do |t|
dep.match? t.spec
end
match.map do |t|
Gem::Resolver::LocalSpecification.new(self, t.spec, t.source)
end
end