Raised by Resolver when a dependency requests a gem for which there is no spec.
Attributes
Read
The unsatisfiable dependency. This is a Gem::Resolver::DependencyRequest
, not a Gem::Dependency
Read & Write
Errors encountered which may have contributed to this exception
Class Methods
lib/rubygems/exceptions.rb
View on GitHub
# File tmp/rubies/ruby-2.4.10/lib/rubygems/exceptions.rb, line 235
def initialize dep, platform_mismatch=nil
if platform_mismatch and !platform_mismatch.empty?
plats = platform_mismatch.map { |x| x.platform.to_s }.sort.uniq
super "Unable to resolve dependency: No match for '#{dep}' on this platform. Found: #{plats.join(', ')}"
else
if dep.explicit?
super "Unable to resolve dependency: user requested '#{dep}'"
else
super "Unable to resolve dependency: '#{dep.request_context}' requires '#{dep}'"
end
end
@dependency = dep
@errors = []
end
Creates a new UnsatisfiableDependencyError
for the unsatisfiable Gem::Resolver::DependencyRequest
dep
Instance Methods
#
lib/rubygems/exceptions.rb
View on GitHub
# File tmp/rubies/ruby-2.4.10/lib/rubygems/exceptions.rb, line 254
def name
@dependency.name
end
The name of the unresolved dependency
#
lib/rubygems/exceptions.rb
View on GitHub
# File tmp/rubies/ruby-2.4.10/lib/rubygems/exceptions.rb, line 261
def version
@dependency.requirement
end
The Requirement of the unresolved dependency (not Version).