Sha256: 1597fda9946fbf3e8e8432825161d9183850ca65b381d24623d8556c8b79862e
Contents?: true
Size: 789 Bytes
Versions: 2
Compression:
Stored size: 789 Bytes
Contents
# encoding: utf-8 require 'faraday' require 'base64' module Github class Request class BasicAuth < Faraday::Middleware # dependency 'base64' # @api private def initialize(app, *args) @app = app @auth = nil options = args.extract_options! if options.key?(:login) && !options[:login].nil? credentials = "#{options[:login]}:#{options[:password]}" @auth = Base64.encode64(credentials) @auth.gsub!("\n", "") end end # Update request headers # # @api private def call(env) if @auth env[:request_headers].merge!('Authorization' => "Basic #{@auth}") end @app.call(env) end end # BasicAuth end # Request end # Github
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
github_api2-1.0.1 | lib/github_api2/request/basic_auth.rb |
github_api2-1.0.0 | lib/github_api2/request/basic_auth.rb |