Sha256: a467a94731a87c1776f20091c689753c670a03f98c853abdd8934030412cb781

Contents?: true

Size: 801 Bytes

Versions: 11

Compression:

Stored size: 801 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

11 entries across 11 versions & 2 rubygems

Version Path
chef-dk-3.11.3 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.10.1 lib/chef-dk/skeletons/code_generator/recipes/template.rb
galvanize-0.1.2 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-3.0.36 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-2.4.17 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-2.3.4 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-2.3.3 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-2.3.1 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-2.1.11 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-2.0.28 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-2.0.26 lib/chef-dk/skeletons/code_generator/recipes/template.rb