class QB::GitHub::Issue

@todo document QB::GitHub::Issue class.

Public Class Methods

find_by(repo_id:, number: new QB::GitHub::API.client.issue( repo_id.path, number )) click to toggle source

@todo Document find method.

@param [type] arg_name

@todo Add name param description.

@return [return_type]

@todo Document return value.
# File lib/qb/github/issue.rb, line 52
def self.find_by repo_id:, number:
  new QB::GitHub::API.client.issue( repo_id.path, number )
end
list(arg_name) click to toggle source

@todo Document list method.

@param [type] arg_name

@todo Add name param description.

@return [return_type]

@todo Document return value.
# File lib/qb/github/issue.rb, line 66
def self.list arg_name
  # method body
end

Public Instance Methods

[](key) click to toggle source

Instance Methods

# File lib/qb/github/issue.rb, line 84
def [] key
  @octokit_resource[key]
end
title_filename() click to toggle source
# File lib/qb/github/issue.rb, line 88
def title_filename
  
end