Class: Gem::Resolver::ComposedSet
- Defined in:
- lib/rubygems/resolver/composed_set.rb
Overview
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.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#sets ⇒ Object
readonly
:nodoc:.
Attributes inherited from Set
Instance Method Summary collapse
-
#find_all(req) ⇒ Object
Finds all specs matching
reqin all sets. -
#initialize(*sets) ⇒ ComposedSet
constructor
Creates a new ComposedSet containing
sets. -
#prefetch(reqs) ⇒ Object
Prefetches
reqsin all sets. -
#remote=(remote) ⇒ Object
Sets the remote network access for all composed sets.
Methods inherited from Set
Constructor Details
#initialize(*sets) ⇒ ComposedSet
Creates a new ComposedSet containing sets. Use Gem::Resolver::compose_sets instead.
18 19 20 21 22 |
# File 'lib/rubygems/resolver/composed_set.rb', line 18 def initialize *sets super() @sets = sets end |
Instance Attribute Details
#sets ⇒ Object (readonly)
:nodoc:
12 13 14 |
# File 'lib/rubygems/resolver/composed_set.rb', line 12 def sets @sets end |
Instance Method Details
#find_all(req) ⇒ Object
Finds all specs matching req in all sets.
36 37 38 39 40 |
# File 'lib/rubygems/resolver/composed_set.rb', line 36 def find_all req @sets.map do |s| s.find_all req end.flatten end |
#prefetch(reqs) ⇒ Object
Prefetches reqs in all sets.
45 46 47 |
# File 'lib/rubygems/resolver/composed_set.rb', line 45 def prefetch reqs @sets.each { |s| s.prefetch(reqs) } end |
#remote=(remote) ⇒ Object
Sets the remote network access for all composed sets.
27 28 29 30 31 |
# File 'lib/rubygems/resolver/composed_set.rb', line 27 def remote= remote super @sets.each { |set| set.remote = remote } end |