Class: RubocopPr::Repositories::Github

Inherits:
RubocopPr::Repository show all
Defined in:
lib/rubocop_pr/repositories/github.rb,
lib/rubocop_pr/repositories/github/checks/verify_hub_version.rb

Overview

Github repository

Defined Under Namespace

Modules: Checks Classes: Base, Issue, PullRequest

Class Method Summary collapse

Methods inherited from RubocopPr::Repository

all, create_issue, create_pull_request, inherited

Class Method Details

.checksObject



104
105
106
# File 'lib/rubocop_pr/repositories/github.rb', line 104

def checks
  super + [RubocopPr::Repositories::Github::Checks::VerifyHubVersion]
end

.issue(*args) ⇒ Object



108
109
110
# File 'lib/rubocop_pr/repositories/github.rb', line 108

def issue(*args)
  Issue.new(*args)
end

.pull_request(*args) ⇒ Object



112
113
114
# File 'lib/rubocop_pr/repositories/github.rb', line 112

def pull_request(*args)
  PullRequest.new(*args)
end