Sha256: 91fa2d276e845b2c515e9538a90d3c82c0e8597d8c86e1a5077a17b071131f94
Contents?: true
Size: 1.1 KB
Versions: 4
Compression:
Stored size: 1.1 KB
Contents
require 'faraday_middleware' require 'faraday/response/raise_octokit_error' module Octokit # @private module Connection private def connection(authenticate=true, raw=false, version=3, force_urlencoded=false) case version when 3 url = Octokit.api_endpoint end options = { :proxy => proxy, :ssl => { :verify => false }, :url => url, } options.merge!(:params => {:access_token => oauth_token}) if oauthed? && !authenticated? # TODO: Don't build on every request connection = Faraday.new(options) do |builder| if version >= 3 && !force_urlencoded builder.request :json else builder.request :url_encoded end builder.use Faraday::Response::RaiseOctokitError unless raw builder.use FaradayMiddleware::Mashify builder.use FaradayMiddleware::ParseJson end builder.adapter *adapter end connection.basic_auth authentication[:login], authentication[:password] if authenticate and authenticated? connection end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
octokit-1.11.0 | lib/octokit/connection.rb |
octokit-1.10.0 | lib/octokit/connection.rb |
octokit-1.9.4 | lib/octokit/connection.rb |
octokit-1.9.3 | lib/octokit/connection.rb |