summaryrefslogtreecommitdiff
path: root/lib/rubygems/resolver/best_set.rb
blob: 533a0db58fcff160bc361700ae91d5e903bcc44e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
##
# The BestSet chooses the best available method to query a remote index.
#
# It combines IndexSet and APISet

class Gem::Resolver::BestSet < Gem::Resolver::ComposedSet

  ##
  # Creates a BestSet for the given +sources+ or Gem::sources if none are
  # specified.  +sources+ must be a Gem::SourceList.

  def initialize sources = Gem.sources
    super()

    sources.each_source do |source|
      @sets << source.dependency_resolver_set
    end
  end

end