class 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
Public Class Methods
Source
# File lib/rubygems/exceptions.rb, line 44 def initialize(conflict) @conflict = conflict a, b = conflicting_dependencies super "conflicting dependencies #{a} and #{b}\n#{@conflict.explanation}" end
              Calls superclass method
              
        Exception::new
            Public Instance Methods
Source
# File lib/rubygems/exceptions.rb, line 51 def conflicting_dependencies @conflict.conflicting_dependencies end