Sha256: 57c00e6576fc1aaf1cc812d132f41b9c6204e8164d9502dcddfe6d8cd67cc9c7
Contents?: true
Size: 448 Bytes
Versions: 77
Compression:
Stored size: 448 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/typhoeus/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
77 entries across 64 versions & 15 rubygems