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



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

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

Instance Method Details

#to_sObject Also known as: message



459
460
461
462
# File 'lib/berkshelf/errors.rb', line 459

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