method
new
v2_2_9 -
Show latest stable
-
0 notes -
Class: ConflictError
- 1_8_6_287
- 1_8_7_72
- 1_8_7_330
- 1_9_1_378
- 1_9_2_180
- 1_9_3_125
- 1_9_3_392
- 2_1_10
- 2_2_9 (0)
- 2_4_6 (0)
- 2_5_5 (0)
- 2_6_3 (0)
- What's this?
new(target, conflicts)
public
Hide source
# File lib/rubygems/errors.rb, line 37 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