Exception: Berkshelf::NotACookbook

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

Instance Method Summary collapse

Methods inherited from BerkshelfError

set_status_code

Constructor Details

#initialize(path) ⇒ NotACookbook

Returns a new instance of NotACookbook.

Parameters:

  • path (String)

    the path to the thing that is not a cookbook



452
453
454
# File 'lib/berkshelf/errors.rb', line 452

def initialize(path)
  @path = File.expand_path(path) rescue path
end

Instance Method Details

#to_sObject Also known as: message



456
457
458
459
# File 'lib/berkshelf/errors.rb', line 456

def to_s
  "The resource at '#{@path}' does not appear to be a valid cookbook. " \
  "Does it have a metadata.rb?"
end