module Gitgut::Github

A wrapper around an octokit client

Public Class Methods

client() click to toggle source
# File lib/gitgut/github.rb, line 6
def self.client
  @client ||= Octokit::Client.new(login: Settings.github.login, password: Settings.github.password)
end