Ruby client of ZenHub API
Add this line to your application's Gemfile:
gem 'zenhub_ruby'
And then execute:
$ bundle
Or install it yourself as:
$ gem install zenhub_ruby
require 'zenhub_ruby'
client = ZenhubRuby::Client.new('ZENHUB_ACCESS_TOKEN', 'GITHUB_ACCESS_TOKEN')
or
client = ZenhubRuby.new('ZENHUB_ACCESS_TOKEN', 'GITHUB_ACCESS_TOKEN')
client.issue_data('REPO_NAME(ex: "tkm-kj/zenhub_ruby")', ISSUE_NUMBER)
client.issue_events('REPO_NAME', ISSUE_NUMBER)
client.board_data('REPO_NAME')
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
MIT