Sha256: 17f5ed02a997f6042370db468bbad77b10f6f06f7ce3010d24baa0b1628bc2cb
Contents?: true
Size: 452 Bytes
Versions: 6
Compression:
Stored size: 452 Bytes
Contents
# frozen_string_literal: true module Faraday class Adapter # Typhoeus adapter. This class is just a stub, the real adapter is in # https://github.com/philsturgeon/typhoeus/blob/master/lib/typhoeus/adapters/faraday.rb class Typhoeus < Faraday::Adapter # Needs to define this method in order to support Typhoeus <= 1.3.0 def call; end dependency 'typhoeus' dependency 'typhoeus/adapters/faraday' end end end
Version data entries
6 entries across 6 versions & 2 rubygems