Module: ReadIt::HTTP

Included in:
ReadIt
Defined in:
lib/read_it/http.rb

Instance Method Summary collapse

Instance Method Details

#httpObject



6
7
8
9
10
11
12
# File 'lib/read_it/http.rb', line 6

def http
  @http ||= Faraday::Connection.new 'http://www.reddit.com' do |faraday|
    faraday.request :url_encoded
    faraday.adapter ReadIt.adapter
    faraday.headers["User-Agent"] = "ReadIt v#{ReadIt::VERSION}"
  end
end