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
2.3
View on GitHub
# File tmp/rubies/ruby-2.3.8/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
2.3
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/rubygems/exceptions.rb, line 42
def conflicting_dependencies
@conflict.conflicting_dependencies
end
No documentation available