Class
Raised when there are conflicting gem specs loaded
Attributes
Read
A Hash
mapping conflicting specifications to the dependencies that caused the conflict
Read
The specification that had the conflict
Class Methods
lib/rubygems/errors.rb
View on GitHub
# File tmp/rubies/ruby-2.5.9/lib/rubygems/errors.rb, line 84
def initialize target, conflicts
@target = target
@conflicts = conflicts
@name = target.name
reason = conflicts.map { |act, dependencies|
"#{act.full_name} conflicts with #{dependencies.join(", ")}"
}.join ", "
# TODO: improve message by saying who activated `con`
super("Unable to activate #{target.full_name}, because #{reason}")
end
No documentation available