1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/lib/rubygems/resolver/composed_set.rb
drbrain ea2a00d785 * lib/rubygems: Update to RubyGems 2.2.2 prerelease to check fixes to
CI.
	* test/rubygems:  ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44799 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2014-02-04 00:48:31 +00:00

50 lines
879 B
Ruby

##
# A ComposedSet allows multiple sets to be queried like a single set.
#
# To create a composed set with any number of sets use:
#
# Gem::Resolver.compose_sets set1, set2
#
# This method will eliminate nesting of composed sets.
class Gem::Resolver::ComposedSet < Gem::Resolver::Set
attr_reader :sets # :nodoc:
##
# Creates a new ComposedSet containing +sets+. Use
# Gem::Resolver::compose_sets instead.
def initialize *sets
super()
@sets = sets
end
##
# Sets the remote network access for all composed sets.
def remote= remote
super
@sets.each { |set| set.remote = remote }
end
##
# Finds all specs matching +req+ in all sets.
def find_all req
@sets.map do |s|
s.find_all req
end.flatten
end
##
# Prefetches +reqs+ in all sets.
def prefetch reqs
@sets.each { |s| s.prefetch(reqs) }
end
end