Project

wrike3

0.01
No commit activity in last 3 years
No release in over 3 years
Ruby client to access Wrike API V3.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.13.7
~> 1.1
~> 3.5
 Project Readme

Wrike

This gem is to communicate through Wrike.com API

Installation

Add to your Gemfile:

gem 'wrike3'

Then run:

$ bundle install

Usage

We mimic the ActiveRecord-style interface.

Configuration

# Initialize your Wrike object:
Wrike3.configure do |config|
  config.client_id = 'client-id'
  config.access_token  = 'access-token'
end

@wrike = Wrike3()

# or alternatively:
@wrike = Wrike3(:client_id => 'client-id')