README.md in pivotal_to_pdf-1.0.0 vs README.md in pivotal_to_pdf-1.1.0
- old
+ new
@@ -1,9 +1,9 @@
pivotal_to_pdf -- print the stories from pivotal tracker to a PDF file
====================================
-[![Build Status](http://travis-ci.org/ywen/pivotal_to_pdf.png)](http://travis-ci.org/ywen/pivotal_to_pdf)
+[![Build Status](https://secure.travis-ci.org/ywen/pivotal_to_pdf.png)](http://travis-ci.org/ywen/pivotal_to_pdf)
## DESCRIPTION
This is a gem that can read a story from pivotal tracker and print into a 4x6 card so that you can print the card and stick to your physical story board.
I steal the part of code from http://ephemera.karmi.cz/post/622136360/create-printable-pdf-cards-for-your-pivotal-tracker-stor The difference is the code there print to a A4 paper with 4 stories on it. This gem prints one card at a time and the gem doesn't require an exported csv file.
@@ -23,33 +23,33 @@
* pivotal_to_pdf current_iteration # print stories for the current iteration into a PDF file
* pivotal_to_pdf story STORY_ID # print a single story specifed by ID into a PDF file
-* pivotal_to_pdf iteration iteration_number # print a single iteration specifed by the number into a PDF file
+* pivotal_to_pdf iteration ITERATION_NUMBER # print a single iteration specifed by the number into a PDF file
+* pivotal_to_pdf label LABEL_TEXT # print stories matching the specified label into a PDF file
+
Examples:
```bash
pivotal_to_pdf story 159898
pivotal_to_pdf current_iteration
pivotal_to_pdf iteration 42
+
+pivotal_to_pdf label print-these
```
Type in
```bash
pivotal_to_pdf help
-pivotal_to_pdf help story
-
-pivotal_to_pdf help current_iteration
-
-pivotal_to_pdf help iteration
+pivotal_to_pdf help <command>
```
for more usage information
The gem will then read the story/stories and print it into a PDF file
@@ -64,5 +64,6 @@
* [Yi Wen](https://github.com/ywen)
* Carol Nichols
* Kristian Rasmussen
* [Alastair Mair](https://github.com/amair)
* [John-Mason P. Shackelford](https://github.com/jpshackelford)
+* [mogul](https://github.com/mogul)