Exception: Bundler::IncorrectLockfileDependencies
- Inherits:
-
BundlerError
- Object
- StandardError
- BundlerError
- Bundler::IncorrectLockfileDependencies
- Defined in:
- lib/bundler/errors.rb
Instance Attribute Summary collapse
-
#spec ⇒ Object
readonly
Returns the value of attribute spec.
Instance Method Summary collapse
-
#initialize(spec) ⇒ IncorrectLockfileDependencies
constructor
A new instance of IncorrectLockfileDependencies.
- #message ⇒ Object
Methods inherited from BundlerError
Constructor Details
permalink #initialize(spec) ⇒ IncorrectLockfileDependencies
Returns a new instance of IncorrectLockfileDependencies.
271 272 273 |
# File 'lib/bundler/errors.rb', line 271 def initialize(spec) @spec = spec end |
Instance Attribute Details
permalink #spec ⇒ Object (readonly)
Returns the value of attribute spec.
269 270 271 |
# File 'lib/bundler/errors.rb', line 269 def spec @spec end |
Instance Method Details
permalink #message ⇒ Object
[View source]
275 276 277 |
# File 'lib/bundler/errors.rb', line 275 def "Bundler found incorrect dependencies in the lockfile for #{spec.full_name}" end |