0.0
No commit activity in last 3 years
No release in over 3 years
`tp` is a dead simple command-line utility for importing story templates into Pivotal Tracker.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

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 template_file.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:

---
:token: <my_secret_api_token>
:project: 123
:stories:
  -  :current_state: unstarted
     :name: Provision server
     :story_type: chore
  -  :current_state: unstarted
     :name: Set up git repo
     :story_type: chore
  -  :current_state: unstarted
     :name: Set up DNS
     :story_type: chore
     :description: find out from client what they want to call their site

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