Exception: Berkshelf::NotACookbook
- Inherits:
-
BerkshelfError
- Object
- StandardError
- BerkshelfError
- Berkshelf::NotACookbook
- Defined in:
- lib/berkshelf/errors.rb
Instance Method Summary collapse
-
#initialize(path) ⇒ NotACookbook
constructor
A new instance of NotACookbook.
- #to_s ⇒ Object (also: #message)
Methods inherited from BerkshelfError
Constructor Details
#initialize(path) ⇒ NotACookbook
Returns a new instance of NotACookbook.
455 456 457 |
# File 'lib/berkshelf/errors.rb', line 455 def initialize(path) @path = File.(path) rescue path end |
Instance Method Details
#to_s ⇒ Object 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 |