class Erubi::Engine

def add_code(code)

Add ruby code to the template
def add_code(code)
  terminate_expression
  @src << code
  @src << ';' unless code[RANGE_LAST] == "\n"
  @buffer_on_stack = false
end