Sha256: a54aa46148cc5a83b558196bfe215cce4c24904390bd69fc6ea51c6e800f6859

Contents?: true

Size: 833 Bytes

Versions: 13

Compression:

Stored size: 833 Bytes

Contents

# frozen_string_literal: true
context = ChefDK::Generator.context
cookbook_dir = File.join(context.cookbook_root, context.cookbook_name)
template_dir = File.join(cookbook_dir, 'templates')
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.content_source))
  end

else

  template template_path do
    source 'template.erb'
    helpers(ChefDK::Generator::TemplateHelper)
  end

end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
chef-dk-3.9.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.8.14 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.7.23 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.6.57 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.5.13 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-2.6.2 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.4.38 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-2.6.1 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.3.23 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.2.30 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-2.5.13 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.1.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-2.5.3 lib/chef-dk/skeletons/code_generator/recipes/template.rb