public
Description: A gem that provides a ruby wrapper around the tickspot.com api
Homepage: http://tickspot.com/api/
Clone URL: git://github.com/bricooke/tickspot-ruby.git
name age message
file LICENSE Sat Apr 12 00:18:19 -0700 2008 Initial commit, only .users works [bricooke]
file README Sat Apr 12 08:54:46 -0700 2008 yoink [bricooke]
file tickspot.rb Sat Apr 12 08:50:14 -0700 2008 Actually did need activesupport for the singula... [bricooke]
README
This is a ruby wrapper for talking to the tickspot.com API. See http://tickspot.com/api/ for details.

Still a work in progress.

*Usage*
ts = Tickspot.new("company.tickspot.com", "email@example.com", "password")

ts.users[0].email
=> "email@example.com"

ts.users[0].created_at
=> "Fri May 11 15:00:08 EDT 2007"


ts.projects[0].name
=> "Best Project Ever"

ts.tasks(ts.projects[0].id)[0].sum_hours
=> "5.5"

ts.entries(5.years.ago, Time.now, :project_id => ts.projects[0].id)[0].hours
=> "0.5"


*TODO*
 - Make a gem
 - Write specs
 - Convert the return values to their actual data types instead of always returning strings