Module: EasyType::Template
- Defined in:
- lib/easy_type/template.rb
Overview
Contains a template helper method.
Class Method Summary collapse
Instance Method Summary collapse
-
#template(name, context) ⇒ String
This allows you to use an erb file.
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
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 |