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

Methods
C
N
Attributes
[R] conflict
Class Public methods
new(conflict)
# File lib/rubygems/exceptions.rb, line 35
def initialize conflict
  @conflict = conflict
  a, b = conflicting_dependencies

  super "conflicting dependencies #{a} and #{b}\n#{@conflict.explanation}"
end
Instance Public methods
conflicting_dependencies()
# File lib/rubygems/exceptions.rb, line 42
def conflicting_dependencies
  @conflict.conflicting_dependencies
end