lib/http/feature.rb in http-3.3.0 vs lib/http/feature.rb in http-4.0.0

- old
+ new

@@ -3,7 +3,20 @@ module HTTP class Feature def initialize(opts = {}) # rubocop:disable Style/OptionHash @opts = opts end + + def wrap_request(request) + request + end + + def wrap_response(response) + response + end end end + +require "http/features/auto_inflate" +require "http/features/auto_deflate" +require "http/features/logging" +require "http/features/instrumentation"