class Chef::Sugar::Kernel::ChefGemLoadError

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/chef/sugar/kernel.rb, line 21
        def initialize(name)
          super <<-EOH
Chef could not load the gem `#{name}'! You may need to install the gem manually
with `gem install #{name}', or include a recipe before you can use this
resource. Please consult the documentation for this cookbook for proper usage.
EOH
        end