Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
resolve_for_zero(dep, platform_mismatch)
public
When there are no possible specifications for dep our work is
done.
# File lib/rubygems/resolver.rb, line 432
def resolve_for_zero dep, platform_mismatch # :nodoc:
@missing << dep
unless @soft_missing
exc = Gem::UnsatisfiableDependencyError.new dep, platform_mismatch
exc.errors = @set.errors
raise exc
end
end