class Erubi::CaptureBlockEngine::Buffer
def <<(v)
def <<(v) concat(v.to_s) end
def capture(*args)
given args to the block, return any data captured by the receiver, and
Temporarily clear the receiver before yielding to the block, yield the
def capture(*args) prev = dup replace("") # 1.8 support! yield(*args) dup ensure replace(prev) end
def h(v)
def h(v) ::Erubi.h(v) end
def |(v)
def |(v) concat(h(v)) end