class Berkshelf::ConfigNotFound

character in the path.
Raised when a cookbook or its recipes contain a space or invalid

def initialize(type, path)

Parameters:
  • path (#to_s) --
  • type (String) --
def initialize(type, path)
  @type = type.to_s
  @path = path
end

def to_s

def to_s
  "No #{@type.capitalize} config file found at: '#{@path}'!"
end