class Hub::LocalServer::Identify

Public Instance Methods

call(env) click to toggle source
# File features/support/local_server.rb, line 8
def call(env)
  if env["PATH_INFO"] == "/__identify__"
    [200, {}, [app.object_id.to_s]]
  else
    app.call(env)
  end
end