Module: EasyType::Template

Defined in:
lib/easy_type/template.rb

Overview

Contains a template helper method.

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(parent) ⇒ Object



11
12
13
# File 'lib/easy_type/template.rb', line 11

def self.included(parent)
  parent.extend(Template)
end

Instance Method Details

#template(name, context) ⇒ String

This allows you to use an erb file. Just like in the normal Puppet classes. The file is searched in the template directory on the same level as the ruby library path. For most puppet classes this is eqal to the normal template path of a module

Examples:

template 'puppet:///modules/my_module_name/create_tablespace.sql.erb', binding

Parameters:

  • name (String)

    this is the name of the template to be used.

  • context (Binding)

    this is the binding to be used in the template

Returns:

  • (String)

    interpreted ERB template

Raises:

  • (ArgumentError)

    when the file doesn’t exist



29
30
31
# File 'lib/easy_type/template.rb', line 29

def template(name, context)
  ERB.new(load_file(name).content, nil, '-').result(context)
end