Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 1.43 KB

README.md

File metadata and controls

53 lines (36 loc) · 1.43 KB

tracker_packer (tp)

tp is a dead simple command-line utility for importing story templates into Pivotal Tracker to save precious time on your agile project. I mean, think of the velocity for heaven's sake!

Usage:

tp --token=blah --project=123 --file=stories.yml

will create stories in the project with ID of 123 based on the yaml template file provided. Upon completion, the newly created story IDs are displayed as output.

Sample yaml template file:

---
-  unstarted
   Provision server
-  unstarted
   Init git repo
-  unstarted
   Set gitosis permissions
-  unstarted
   Set vhost entry

Really the only thing you need to provide is a story name. You can further customize and tailor your stories (or chores) by setting the desired attributes. See the PT API docs for more info.

tp owes its simplicity to the wonderful pivotal-tracker gem.

In fact, there's nothing more to tp than slurping in yaml, looping and creating stories. This gem is overkill.

Getting Started

  • Installing:

    gem install tracker_packer

  • Retrieving API token:

    curl -u $USERNAME:$PASSWORD -X GET https://www.pivotaltracker.com/services/v3/tokens/active

Additional Information

  • Pivotal API v3 info:

  • pivotal-tracker gem info: