Sha256: 170daafc1ec3bde1a8ec0b50ada08a186b3573db46eb6eb4631ef97f87895f9b

Contents?: true

Size: 875 Bytes

Versions: 6

Compression:

Stored size: 875 Bytes

Contents

# frozen_string_literal: true

if ENV['RACK_MINI_PROFILER_PATCH_NET_HTTP'] != 'false'
  if (defined?(Net) && defined?(Net::HTTP))
    if defined?(Rack::MINI_PROFILER_PREPEND_NET_HTTP_PATCH)
      module NetHTTPWithMiniProfiler
        def request(request, *args, &block)
          Rack::MiniProfiler.step("Net::HTTP #{request.method} #{request.path}") do
            super
          end
        end
      end
      Net::HTTP.prepend(NetHTTPWithMiniProfiler)
    else
      Net::HTTP.class_eval do
        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
        alias request_without_mini_profiler request
        alias request request_with_mini_profiler
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rack-mini-profiler-3.3.1 lib/patches/net_patches.rb
rack-mini-profiler-3.3.0 lib/patches/net_patches.rb
rack-mini-profiler-3.2.1 lib/patches/net_patches.rb
rack-mini-profiler-3.2.0 lib/patches/net_patches.rb
rack-mini-profiler-3.1.1 lib/patches/net_patches.rb
rack-mini-profiler-3.1.0 lib/patches/net_patches.rb