class Faraday::Connection

Connection objects manage the default properties and the middleware stack for fulfilling an HTTP request.

@example

conn = Faraday::Connection.new 'http://sushi.com'

# GET http://sushi.com/nigiri
conn.get 'nigiri'
# => #<Faraday::Response>