Sha256: a45f2ab1bd038886522f370c9d08a9879ea22f9c5db8c7c4eb6384d538f449b5
Contents?: true
Size: 783 Bytes
Versions: 76
Compression:
Stored size: 783 Bytes
Contents
context = ChefDK::Generator.context cookbook_dir = File.join(context.cookbook_root, context.cookbook_name) template_dir = File.join(cookbook_dir, 'templates', 'default') template_filename = context.new_file_basename unless File.extname(template_filename) == '.erb' # new_file_basename is a frozen string, so we have to create an entirely # new string here instead of using concat. template_filename = "#{template_filename}.erb" end template_path = File.join(cookbook_dir, 'templates', template_filename) directory template_dir do recursive true end if context.content_source file template_path do content(IO.read(context.context_source)) end else template template_path do source 'template.erb' helpers(ChefDK::Generator::TemplateHelper) end end
Version data entries
76 entries across 76 versions & 3 rubygems