Exception: Bundler::VersionConflict

Inherits:
BundlerError
  • Object
show all
Defined in:
lib/bundler/errors.rb

Overview

Internal error, should be rescued

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from BundlerError

status_code

Constructor Details

#initialize(conflicts, msg = nil) ⇒ VersionConflict

Returns a new instance of VersionConflict.



16
17
18
19
# File 'lib/bundler/errors.rb', line 16

def initialize(conflicts, msg = nil)
  super(msg)
  @conflicts = conflicts
end

Instance Attribute Details

#conflictsObject (readonly)

Returns the value of attribute conflicts.



14
15
16
# File 'lib/bundler/errors.rb', line 14

def conflicts
  @conflicts
end