BacklogJp

A Rubyish interface for Backlog.

Requirements

  • Ruby 2.0.0 or later

Installation

Add this line to your application's Gemfile:

gem 'backlog_jp'

And then execute:

$ bundle

Or install it yourself as:

$ gem install backlog_jp

Usage

TODO: Write more usage instructions here

require "backlog_jp"

BacklogJp.configure do |config|
  config.space    = ENV["BACKLOG_SPACE"]
  config.username = ENV["BACKLOG_USERNAME"]
  config.password = ENV["BACKLOG_PASSWORD"]
end

all_projects = BacklogJp::Project.all # Array of all projects.
project = all_projects.first          # A Project object.
project.issue_types                   # Array of project's issue types.

# etc...
# work in progress

Contributing

  1. Fork it ( http://github.com/y13i/backlog_jp/fork )
  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