module Faraday

def method_missing(name, *args, &block)

.default_connection.
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