Skip to content

vinbarnes/tracker_packer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Import story templates into Pivotal Tracker

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages