Sha256: af87479fb6ce30502738f7e3db8d355d6f333c03531c7b7d3ff9791caa21feeb

Contents?: true

Size: 771 Bytes

Versions: 16

Compression:

Stored size: 771 Bytes

Contents

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

16 entries across 16 versions & 1 rubygems

Version Path
chef-dk-4.13.3 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.12.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.11.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.10.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.9.7 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.7.73 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.13.1 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.6.35 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.12.10 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.12.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.5.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.4.27 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.3.13 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.2.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.1.7 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-4.0.60 lib/chef-dk/skeletons/code_generator/recipes/template.rb