README.md in backlog_kit-0.13.0 vs README.md in backlog_kit-0.14.0

- old
+ new

@@ -4,10 +4,11 @@ [![Build Status](https://travis-ci.org/emsk/backlog_kit.svg?branch=master)](https://travis-ci.org/emsk/backlog_kit) [![Coverage Status](https://coveralls.io/repos/emsk/backlog_kit/badge.svg?branch=master)](https://coveralls.io/r/emsk/backlog_kit) [![Code Climate](https://codeclimate.com/github/emsk/backlog_kit/badges/gpa.svg)](https://codeclimate.com/github/emsk/backlog_kit) [![Dependency Status](https://gemnasium.com/emsk/backlog_kit.svg)](https://gemnasium.com/emsk/backlog_kit) [![Inline docs](http://inch-ci.org/github/emsk/backlog_kit.svg?branch=master)](http://inch-ci.org/github/emsk/backlog_kit) +[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) Ruby wrapper for the Nulab's Backlog API. http://developer.nulab-inc.com/docs/backlog @@ -93,41 +94,55 @@ ```ruby client = BacklogKit::Client.new ``` -## Supported APIs +## Supported Backlog API Version -* Git -* Group -* Issue -* Notification -* Priority -* Project -* Resolution -* Space -* Star -* Status -* User -* Wiki +BacklogKit supports Backlog API [2.8.0](http://developer.nulab-inc.com/docs/backlog/changes#ver_2.8.0). -See [documentation](http://www.rubydoc.info/gems/backlog_kit) for more details. +BacklogKit's API documentation is [here](http://www.rubydoc.info/gems/backlog_kit). ## Supported Ruby Versions * Ruby 2.0.0 * Ruby 2.1 * Ruby 2.2 +* Ruby 2.3 ## Development -After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment. +### Dependencies -To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). +##### Production +* [activesupport](https://github.com/rails/rails/tree/master/activesupport) +* [faraday](https://github.com/lostisland/faraday) +* [faraday_middleware](https://github.com/lostisland/faraday_middleware) + +##### Development + +* [bundler](https://github.com/bundler/bundler) +* [coveralls](https://github.com/lemurheavy/coveralls-ruby) +* [multi_json](https://github.com/intridea/multi_json) +* [rake](https://github.com/ruby/rake) +* [redcarpet](https://github.com/vmg/redcarpet) +* [rspec](https://github.com/rspec/rspec) +* [rubocop](https://github.com/bbatsov/rubocop) +* [simplecov](https://github.com/colszowka/simplecov) +* [vcr](https://github.com/vcr/vcr) +* [webmock](https://github.com/bblimke/webmock) +* [yard](https://github.com/lsegal/yard) + +See [`backlog_kit.gemspec`](backlog_kit.gemspec). + ## Contributing 1. Fork it ( https://github.com/emsk/backlog_kit/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 a new Pull Request + +## License + +[MIT](LICENSE)