Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 354 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 354 Bytes

Gh::Client

Github Enterprise Ruby Client Library

Usage

# クライアント設定
client = Gh::Client.new 'user', 'password'
client.open owner: 'gio-stand-pri', repository: 'gspcp'

# issue一覧取得
issues = client.issues
issues.each do |issue|
  puts issue.title
end

# issue情報取得
issue = client.issue 514
puts issue.title