123456789_123456789_123456789_123456789_123456789_

Exception: Bundler::IncorrectLockfileDependencies

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, BundlerError, StandardError
Instance Chain:
self, BundlerError, StandardError
Inherits: Bundler::BundlerError
Defined in: lib/bundler/errors.rb

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(spec) ⇒ IncorrectLockfileDependencies

[ GitHub ]

  
# File 'lib/bundler/errors.rb', line 271

def initialize(spec)
  @spec = spec
end

Instance Attribute Details

#spec (readonly)

[ GitHub ]

  
# File 'lib/bundler/errors.rb', line 269

attr_reader :spec

Instance Method Details

#message

[ GitHub ]

  
# File 'lib/bundler/errors.rb', line 275

def message
  "Bundler found incorrect dependencies in the lockfile for #{spec.full_name}"
end