class Padrino::Helpers::OutputHelpers::ErbHandler

def concat_to_template(text="")


@handler.concat_to_template("This will be output to the template buffer")
@example

Outputs the given text to the templates buffer directly
#
def concat_to_template(text="")
  self.output_buffer << text if is_type? && text
  nil
end