Processmaker Client Ruby

REST API Ruby Client for ProcessMaker.

** /!\ This gem is still a work in progress and is not ready for production use ! /!\ **

Installation

gem install processmaker

Or in your Gemfile

gem 'processmaker'

Usage

Before using the client you first need to generate an access token from the Processmaker admin interface (check their wiki)

client = Processmaker::Client.new(access_token: 'YOUR_TOKEN')

client.cases
# => [Processmaker::CaseResource]

client.cases.all
# => [Processmaker::Case(app_uid: '123', app_name: 'my_case', ....), ...]