class ActionDispatch::Response

def body_parts

def body_parts
  parts = []
  @stream.each { |x| parts << x }
  parts
end