Sha256: 576309efe45859561238bd61dea73e5c3ac66bced9294adb71f407d3eddc6774
Contents?: true
Size: 459 Bytes
Versions: 15
Compression:
Stored size: 459 Bytes
Contents
# frozen_string_literal: true module HTTP class Feature def initialize(opts = {}) @opts = opts end def wrap_request(request) request end def wrap_response(response) response end def on_error(request, error); end end end require "http/features/auto_inflate" require "http/features/auto_deflate" require "http/features/logging" require "http/features/instrumentation" require "http/features/normalize_uri"
Version data entries
15 entries across 15 versions & 3 rubygems