Exception: Berkshelf::DependencyNotInstalled

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

Instance Method Summary collapse

Methods inherited from BerkshelfError

set_status_code

Constructor Details

#initialize(dependency) ⇒ DependencyNotInstalled

Returns a new instance of DependencyNotInstalled.



477
478
479
480
# File 'lib/berkshelf/errors.rb', line 477

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

Instance Method Details

#to_sObject Also known as: message



482
483
484
485
# File 'lib/berkshelf/errors.rb', line 482

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