class Object
Public Instance Methods
request(*args, &block)
Also aliased as: request_without_mini_profiler
Alias for: request_with_mini_profiler
request_with_mini_profiler(*args, &block)
click to toggle source
# File lib/patches/net_patches.rb, line 4 def request_with_mini_profiler(*args, &block) request = args[0] Rack::MiniProfiler.step("Net::HTTP #{request.method} #{request.path}") do request_without_mini_profiler(*args, &block) end end
Also aliased as: request