module Github::Connection

def connection(options={})


Returns a Fraday::Connection object
def connection(options={})
  conn_options = default_options(options)
  clear_cache unless options.empty?
  puts "OPTIONS:#{conn_options.inspect}" if ENV['DEBUG']
  @connection ||= Faraday.new(conn_options.merge(:builder => stack(options)))
end