class Macros4Cuke::Templating::EOLine
Class used internally by the template engine. Represents an end of line that must be rendered as such.
Public Instance Methods
render(_, _)
click to toggle source
Render an end of line. This method has the same signature as the {Engine#render} method. @return [String] An end of line marker. Its exact value is OS-dependent.
# File lib/macros4cuke/templating/eo-line.rb, line 13 def render(_, _) return "\n" end