No commit activity in last 3 years
No release in over 3 years
Provides methods to read and write to Teambox for ruby apps
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

~> 0.7.4
~> 1.8
~> 0.1.1
 Project Readme

teambox-ruby is a Ruby wrapper for Teambox ( www.teambox.com ) API.

  • Wraps the API in a client object with resources

  • Inspired by the philosophy of KISS, minimal spaghetti

Check out the API docs at www.teambox.com/api for more details on the Teambox API.

Getting Started¶ ↑

First, install the teambox-client gem:

gem install teambox-client

Now, run “irb -rubygems” and this snippet to get the list of activities:

require 'teambox-client'
client = Teambox::Client.new(:auth => {:user => 'frank', :password => 'papapa'})
puts client.activities

By default, teambox-client will connect to the hosted service at teambox.com/api/1; optionally you can:

client = Teambox::Client.new(:base_uri => 'http://teambox.mysite.com/api/1', :auth => {:user => 'frank', :password => 'papapa'})

Examples¶ ↑

See the examples directory.

Important Notes¶ ↑

No support for Ruby 1.9.3 yet.