This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 01a87ef8de3a5e9464773dc6ace68b4652913139
tree 55651f53d43165e1500e7ae69a5238ba8785d060
parent eaf6b76d0376ff7e86dde6dd5a2d9a145e0d85ca
tree 55651f53d43165e1500e7ae69a5238ba8785d060
parent eaf6b76d0376ff7e86dde6dd5a2d9a145e0d85ca
cards /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
CHANGES.txt | ||
| |
Manifest.txt | ||
| |
README.txt | ||
| |
Rakefile | ||
| |
examples/ | ||
| |
lib/ | ||
| |
spec/ | ||
| |
win/ |
README.txt
= Project: Cards
== Description
CardWallGen is a program that reads a requirements map and generates a view
of it. Typically it reads it from excel or csv and generates a graphical
view in visio or omnigraffle, though it may also generate another csv view of it.
== Usage
We try to make it simple to configure. However, you still need a driver file
that might look something like :
CardWall.from csv_file("Business Goals") do
column :goal
end
CardWall.from csv_file("Current Workflow") do
row :activity
column :task
end
CardWall.from csv_file("Stories") do
row :activity
row :task
column :story, :wrap_at => 4 do |card, row|
card.name << "\n\n#{row[:description]}" unless row[:description].blank?
card.name << "\n\n "
end
end
MasterStoryList.from csv_file("Stories")
TrackerCsv.from csv_file("Stories")
== Contact
Author:: Jeremy Lightsmith
Email:: jeremy.lightsmith@gmail.com
License:: LGPL License
== Home Page
http://github.com/jeremylightsmith/cards








