set buffer variable name to ‘_erbout’ as well as ‘_buf‘
this is only for Eruby.
[Source]
# File lib/erubis/enhancer.rb, line 261 261: def add_postamble(src) 262: src << "\n" unless src[-1] == ?\n 263: src << "_buf.to_s\n" 264: end
# File lib/erubis/enhancer.rb, line 257 257: def add_preamble(src) 258: src << "_erbout = _buf = '';" 259: end
[Validate]