class ActionDispatch::Response::Buffer

def to_ary

def to_ary
  @buf.respond_to?(:to_ary) ?
    @buf.to_ary :
    @buf.each
end