module Padrino::Helpers::OutputHelpers

def erb_concat(text)


erb_concat("Direct to buffer")

==== Examples

Concats directly to an erb template
#
def erb_concat(text)
  @_out_buf << text if has_erb_buffer?
end