# # Chef Documentation # https://docs.chef.io/libraries.html # # # This module name was auto-generated from the cookbook name. This name is a # single word that starts with a capital letter and then continues to use # camel-casing throughout the remainder of the name. # module <%= @cookbook_class_name %> module <%= @helper_class_name %> # # Define the methods that you would like to assist the work you do in recipes, # resources, or templates. # # def my_helper_method # # help method implementation # end end end # # The module you have defined may be extended within the recipe to grant the # recipe the helper methods you define. # # Within your recipe you would write: # # extend <%= @cookbook_class_name %>::<%= @helper_class_name %> # # my_helper_method # # You may also add this to a single resource within a recipe: # # template '/etc/app.conf' do # extend <%= @cookbook_class_name %>::<%= @helper_class_name %> # variables specific_key: my_helper_method # end #