module Faraday
def method_missing(name, *args, &block)
Internal: Proxies method calls on the Faraday constant to
def method_missing(name, *args, &block) if default_connection.respond_to?(name) default_connection.send(name, *args, &block) else super end end