Class: Macros4Cuke::Templating::StaticText
- Inherits:
-
Object
- Object
- Macros4Cuke::Templating::StaticText
- Defined in:
- lib/macros4cuke/templating/static-text.rb
Overview
Class used internally by the template engine. Represents a static piece of text from a template. A static text is a text that is reproduced verbatim when rendering a template.
Instance Attribute Summary collapse
-
#source ⇒ Object
readonly
The static text extracted from the original template.
Instance Method Summary collapse
-
#initialize(aSourceText) ⇒ StaticText
constructor
A new instance of StaticText.
-
#render(_, _) ⇒ String
Render the static text.
Constructor Details
#initialize(aSourceText) ⇒ StaticText
Returns a new instance of StaticText.
19 20 21 |
# File 'lib/macros4cuke/templating/static-text.rb', line 19 def initialize(aSourceText) @source = aSourceText end |
Instance Attribute Details
#source ⇒ Object (readonly)
The static text extracted from the original template.
14 15 16 |
# File 'lib/macros4cuke/templating/static-text.rb', line 14 def source @source end |
Instance Method Details
#render(_, _) ⇒ String
Render the static text. This method has the same signature as the Engine#render method.
28 29 30 |
# File 'lib/macros4cuke/templating/static-text.rb', line 28 def render(_, _) return source end |