Class: PDK::Template::Renderer::V1::TemplateFile
- Inherits:
-
OpenStruct
- Object
- OpenStruct
- PDK::Template::Renderer::V1::TemplateFile
- Defined in:
- lib/pdk/template/renderer/v1/template_file.rb
Instance Method Summary collapse
- #config_for(path) ⇒ Object
-
#initialize(template_file, data = {}) ⇒ TemplateFile
constructor
Initialises the TemplateFile object with the path to the template file and the data to be used when rendering the template.
-
#render ⇒ String
Renders the template by calling the appropriate engine based on the file extension.
Constructor Details
#initialize(template_file, data = {}) ⇒ TemplateFile
Initialises the TemplateFile object with the path to the template file and the data to be used when rendering the template.
the template when rendering. the template as an instance variable ‘@configs` in order to maintain compatibility with modulesync.
20 21 22 23 24 25 26 |
# File 'lib/pdk/template/renderer/v1/template_file.rb', line 20 def initialize(template_file, data = {}) @template_file = template_file @configs = data[:configs] if data.key?(:configs) super(data) end |
Instance Method Details
#config_for(path) ⇒ Object
49 50 51 52 53 |
# File 'lib/pdk/template/renderer/v1/template_file.rb', line 49 def config_for(path) return unless respond_to?(:template_dir) template_dir.config_for(path) end |
#render ⇒ String
Renders the template by calling the appropriate engine based on the file extension.
If the template has an ‘.erb` extension, the content of the template file will be treated as an ERB template. All other extensions are treated as plain text.
40 41 42 43 44 45 46 47 |
# File 'lib/pdk/template/renderer/v1/template_file.rb', line 40 def render case File.extname(@template_file) when '.erb' render_erb else render_plain end end |