Raised by Gem::Resolver
when a Gem::Dependency::Conflict reaches the toplevel. Indicates which dependencies were incompatible through conflict
and conflicting_dependencies
Attributes
Read
No documentation available
Class Methods
lib/rubygems/exceptions.rb
View on GitHub
# File tmp/rubies/ruby-2.4.10/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
No documentation available
Instance Methods
lib/rubygems/exceptions.rb
View on GitHub
# File tmp/rubies/ruby-2.4.10/lib/rubygems/exceptions.rb, line 42
def conflicting_dependencies
@conflict.conflicting_dependencies
end
No documentation available