Sha256: 2557f182cb5f3ffe875f7c00a8970dba2422059e8b902fc5a2b5dea521535cea
Contents?: true
Size: 862 Bytes
Versions: 1
Compression:
Stored size: 862 Bytes
Contents
require 'octokit' require 'octoauth' Faraday.default_adapter = :httpclient module Targit ## # Helper module to load a GitHub API client object module Client private def client @client ||= _client end def _client auth = Octoauth.new octoauth_options Octokit::Client.new({ access_token: auth.token, api_endpoint: @options[:api_endpoint], web_endpoint: @options[:api_endpoint], auto_paginate: true }.compact) end def octoauth_options { note: 'targit', files: authfiles, autosave: @options[:autosave] || true, api_endpoint: @options[:api_endpoint], scopes: ['public_repo'] } end def authfiles return [:default] unless @options[:authfile] @authfiles ||= @options[:authfile].split(',') end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
targit-2.4.2 | lib/targit/client.rb |