class GithubGateway

Public Class Methods

new(repo) click to toggle source
# File lib/github_to_trello/github_gateway.rb, line 4
def initialize(repo)
  @repo = repo
end

Public Instance Methods

issues() click to toggle source
# File lib/github_to_trello/github_gateway.rb, line 8
def issues
  Octokit.issues @repo
end