class ActionDispatch::DebugLocks

def call(env)

def call(env)
  req = ActionDispatch::Request.new env
  if req.get?
    path = req.path_info.chomp("/")
    if path == @path
      return render_details(req)
    end
  end
  @app.call(env)
end