class Ridley::Errors::UnknownCookbookFileType

Attributes

type[R]

Public Class Methods

new(type) click to toggle source
# File lib/ridley/errors.rb, line 31
def initialize(type)
  @type = type
end

Public Instance Methods

to_s() click to toggle source
# File lib/ridley/errors.rb, line 35
def to_s
  "filetype: '#{type}'"
end