redmine-ruby

Installation

gem install redmine-ruby

Or in your Gemfile:

gem 'redmine-ruby'

Usage

require 'redmine-ruby'

client = Redmine::Client.new(URL, TOKEN)

client.projects
# returns the Her::Model Issue
# see https://github.com/remiprev/her#usage

client.issues
# returns the Her::Model Issue

client.issues.all( project_id: 'PROJECT_KEY' )
# returns a Her::Model::Relation

client.issues.all( project_id: 'PROJECT_KEY' ).map do |issue|
  # do something...
end

That is all for now. Please help creating the other Redmine API methods.

Contributing to redmine-ruby

License

This gem is released under the MIT License.