Taskworld

Gem Version Build Status

A Ruby client for the Taskworld Web APIs.

Installation

Add this line to your application's Gemfile:

gem 'taskworld'

And then execute:

$ bundle

Or install it yourself as:

$ gem install taskworld

Usage

Web Client

Taskworld::Client.configure do |config|
  config.server = :usa
  config.email = '[email protected]'
  config.password = 'm0reM0n1th@nG0D!'
end

Get all projects

client = Taskworld::Client.new
client.project_get_all(space_id: '59eecc4bb0a6a6bc83f5fc39')