Method: Egree::Client#connection

Defined in:
lib/egree/client.rb

#connectionObject



45
46
47
48
49
50
51
# File 'lib/egree/client.rb', line 45

def connection
  Faraday.new "https://#{host}" do |conn|
    conn.headers["Accept"] = "application/json"
    conn.basic_auth username, password
    conn.adapter :net_http
  end
end