lib/rack/insight/panels/request_variables_panel.rb in rack-insight-0.5.13 vs lib/rack/insight/panels/request_variables_panel.rb in rack-insight-0.5.14
- old
+ new
@@ -1,15 +1,6 @@
module Rack::Insight
class RequestVariablesPanel < Panel
- def initialize(app)
- super
-
- table_setup("request_variables")
- end
-
- def name
- "request_variables"
- end
def after(env,status,headers,body)
sections = {}
sections["GET"] = sort(@request.GET) if @request.GET.any?
sections["POST"] = sort(@request.POST) if @request.POST.any?