Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

tkm-kj/zenhub_ruby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zenhub_ruby Build Status Gem Version

Ruby client of ZenHub API

Installation

Add this line to your application's Gemfile:

gem 'zenhub_ruby'

And then execute:

$ bundle

Or install it yourself as:

$ gem install zenhub_ruby

Usage

Setup

require 'zenhub_ruby'

client = ZenhubRuby::Client.new('ZENHUB_ACCESS_TOKEN', 'GITHUB_ACCESS_TOKEN')

or

client = ZenhubRuby.new('ZENHUB_ACCESS_TOKEN', 'GITHUB_ACCESS_TOKEN')

Get issue data

client.issue_data('REPO_NAME(ex: "tkm-kj/zenhub_ruby")', ISSUE_NUMBER)

Get issue events

client.issue_events('REPO_NAME', ISSUE_NUMBER)

Get the ZenHub Board data for a repository

client.board_data('REPO_NAME')

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

MIT