Sha256: f987180fa4fffed2f8d925e3efebc20564e32feee240e8939ecf9bdc67e4730e

Contents?: true

Size: 797 Bytes

Versions: 22

Compression:

Stored size: 797 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", "default", template_filename)

directory template_dir do
  recursive true
end

if source_file = context.content_source

  file template_path do
    content(IO.read(source_file))
  end

else

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

end

Version data entries

22 entries across 20 versions & 2 rubygems

Version Path
chef-dk-0.15.16 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.14.25 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.11.2 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.11.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
cookbook_creator-0.0.3 lib/cookbook_creator/skeletons/code_generator/recipes/template.rb
cookbook_creator-0.0.3 lib/skeletons/code_generator/recipes/template.rb
cookbook_creator-0.0.2 lib/skeletons/code_generator/recipes/template.rb
cookbook_creator-0.0.2 lib/cookbook_creator/skeletons/code_generator/recipes/template.rb
chef-dk-0.10.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.8.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.7.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.6.2 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.6.1 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.6.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.5.1 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.5.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.5.0.rc.1 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.4.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.3.5 lib/chef-dk/skeletons/code_generator/recipes/template.rb
chef-dk-0.3.0 lib/chef-dk/skeletons/code_generator/recipes/template.rb