Class
Resolver sets are used to look up specifications (and their dependencies) used in resolution. This set is abstract.
Attributes
Read & Write
Errors encountered when resolving gems
Read & Write
When true, allows matching of requests to prerelease gems.
Instance Methods
lib/rubygems/resolver/set.rb
View on GitHub
# File tmp/rubies/ruby-2.5.9/lib/rubygems/resolver/set.rb, line 34
def find_all req
raise NotImplementedError
end
The find_all
method must be implemented. It returns all Resolver Specification objects matching the given DependencyRequest req
.
lib/rubygems/resolver/set.rb
View on GitHub
# File tmp/rubies/ruby-2.5.9/lib/rubygems/resolver/set.rb, line 46
def prefetch reqs
end