pivotal-tracker-api

No brainer wrapper for using the PivotalTracker API.

Start with declaring the token.

Pivotal.token = ‘TOKEN’

Then just use the classes provided by Pivotal

Querying:

projects = Pivotal::Project.find(:all)

projects.stories

Pivotal::Stories.find(:all, :params => { :project_id => ‘123’ })

Saving:

projects.destroy

Updating

projects.name = “My New Project Name”

projects.save

Copyright © 2009 Roman Gonzalez. See LICENSE for details.