class Chef::Exceptions::CookbookChefVersionMismatch

Public Class Methods

new(chef_version, cookbook_name, cookbook_version, *constraints) click to toggle source
Calls superclass method
# File lib/chef/exceptions.rb, line 494
def initialize(chef_version, cookbook_name, cookbook_version, *constraints)
  constraint_str = constraints.map { |c| c.requirement.as_list.to_s }.join(", ")
  super "Cookbook '#{cookbook_name}' version '#{cookbook_version}' depends on chef version #{constraint_str}, but the running chef version is #{chef_version}"
end