module Roda::RodaPlugins::Base::ResponseMethods

def write(str)

response.write('foo')

Write to the response body. Returns nil.
def write(str)
  s = str.to_s
  @length += s.bytesize
  @body << s
  nil
end