module NetHTTPWithMiniProfiler

Public Instance Methods

request(request, *args, &block) click to toggle source
Calls superclass method
# File lib/patches/net_patches.rb, line 7
def request(request, *args, &block)
  Rack::MiniProfiler.step("Net::HTTP #{request.method} #{request.path}") do
    super
  end
end