class Gitomator::GitHub::BaseProvider
Public Class Methods
new(github_client, github_organization=nil)
click to toggle source
@param github_client [Octokit::Client] @param github_organization [String]
# File lib/gitomator/github/base_provider.rb, line 14 def initialize(github_client, github_organization=nil) @gh = github_client @org = github_organization @repo_name_resolver = Gitomator::Util::Repo::NameResolver.new(@org) end
Public Instance Methods
name()
click to toggle source
# File lib/gitomator/github/base_provider.rb, line 21 def name :github end