class ActionDispatch::Response::RackBody

def close

def close
  # Rack "close" maps to Response#abort, and **not** Response#close (which is used
  # when the controller's finished writing)
  @response.abort
end