Class: Macros4Cuke::Templating::EOLine

Inherits:
Object
  • Object
show all
Defined in:
lib/macros4cuke/templating/engine.rb

Overview

Class used internally by the template engine.
Represents an end of line that must be rendered as such.

Instance Method Summary collapse

Instance Method Details

#render(aContextObject, theLocals) ⇒ String

Render an end of line. This method has the same signature as the Macros4Cuke::Templating::Engine#render method.

Returns:

  • (String)

    An end of line marker. Its exact value is OS-dependent.



77
78
79
# File 'lib/macros4cuke/templating/engine.rb', line 77

def render(aContextObject, theLocals)
  return "\n"
end