In Files

  • rubygems/exceptions.rb

Class/Module Index [+]

Quicksearch

Gem::DependencyResolutionError

Raised by Gem::Resolver when a Gem::Dependency::Conflict reaches the toplevel. Indicates which dependencies were incompatible through conflict and conflicting_dependencies

Attributes

conflict[R]

Public Class Methods

new(conflict) click to toggle source
 
               # File rubygems/exceptions.rb, line 25
def initialize(conflict)
  @conflict = conflict
  a, b = conflicting_dependencies

  super "conflicting dependencies #{a} and #{b}\n#{@conflict.explanation}"
end
            

Public Instance Methods

conflicting_dependencies() click to toggle source
 
               # File rubygems/exceptions.rb, line 32
def conflicting_dependencies
  @conflict.conflicting_dependencies
end