Exception: Berkshelf::DependencyNotInstalled

Inherits:
BerkshelfError
  • Object
show all
Defined in:
lib/berkshelf/errors.rb

Instance Method Summary collapse

Methods inherited from BerkshelfError

status_code

Constructor Details

#initialize(dependency) ⇒ DependencyNotInstalled

Returns a new instance of DependencyNotInstalled.



434
435
436
437
# File 'lib/berkshelf/errors.rb', line 434

def initialize(dependency)
  @name    = dependency.name
  @version = dependency.locked_version
end

Instance Method Details

#to_sObject



439
440
441
442
# File 'lib/berkshelf/errors.rb', line 439

def to_s
  "The cookbook '#{@name} (#{@version})' is not installed. Please run " \
  "`berks install` to download and install the missing dependency."
end