Sha256: ea048c055b0a6dbc2718d6ee4b6de028d7b65633db388733b39ead52a2c3e730

Contents?: true

Size: 507 Bytes

Versions: 3

Compression:

Stored size: 507 Bytes

Contents

require 'faraday'

module VCR
  module HttpStubbingAdapters
    module Faraday
      include Common
      extend self

      MINIMUM_VERSION = '0.6.0'
      MAXIMUM_VERSION = '0.6'

      private

      def version
        ::Faraday::VERSION
      end

      def normalize_uri(uri)
        # faraday normalizes +'s to %20's
        uri.gsub('+', '%20')
      end
    end
  end
end

VCR::HttpStubbingAdapters::Common.add_vcr_info_to_exception_message(VCR::Middleware::Faraday::HttpConnectionNotAllowedError)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vcr-1.11.3 lib/vcr/http_stubbing_adapters/faraday.rb
vcr-1.11.2 lib/vcr/http_stubbing_adapters/faraday.rb
vcr-1.11.1 lib/vcr/http_stubbing_adapters/faraday.rb