class ActionDispatch::Response::Buffer

def body

def body
  @str_body ||= begin
    buf = +""
    each { |chunk| buf << chunk }
    buf
  end
end