public
Description: Creates nice little A4 pages with story cards from Rally
Homepage: http://rallydev.com
Clone URL: git://github.com/cv/rally-export.git
name age message
file .gitignore Thu Apr 17 17:09:02 -0700 2008 added ignores [Carlos Villela]
file README.textile Sat May 31 19:44:20 -0700 2008 updated README - new merb version looks pretty ... [Carlos Villela]
file Rakefile Sat May 31 19:38:55 -0700 2008 migrated to merb (sudo gem install merb then ra... [Carlos Villela]
file index.html.erb Sat May 31 19:39:17 -0700 2008 migrated to merb (sudo gem install merb then ra... [Carlos Villela]
file rally-export.rb Sat May 31 23:56:11 -0700 2008 added compatibility route [Carlos Villela]
README.textile

Rally Export Tool

This is a simple tool that reads the XML exports from Rally and spits out a series of story cards ready for print.

Requirements

You don’t need to set up a database.

Installation

Install Ruby, RubyGems and Merb.

Install Hpricot and Morph:

gem install hpricot

gem install morph

Edit the first line of rally-export.rb, look for the line:

STORIES_XML_LOCATION = "..."

And point at the place where the Stories.xml file from Rally was downloaded (you can export it from the drop-down menu in the User Stories list). On Windows, use forward slashes (so C:\foo\bar\stories.xml becomes C:/foo/bar/stories.xml).

Start the server:

cd $PATH_TO/rally-export

rake

Go to http://localhost:3000. You should be see a long list of cards. Print it, and you should have 3 3×5 cards per page, ready to be cut and put on your story wall.

Carlos Villela