class GithubAPI
Public Class Methods
new(issue_path)
click to toggle source
# File lib/pghub/github_api.rb, line 10 def initialize(issue_path) @issue_path = issue_path end
Private Instance Methods
issue_path()
click to toggle source
# File lib/pghub/github_api.rb, line 16 def issue_path raise UndefinedIssuePath, '@issue_path is not defined.' if @issue_path.blank? @issue_path end