public
Description: Capistrano recipes for Pivotal Tracker. Can mark stories delivered on deploy.
Homepage:
Clone URL: git://github.com/collectiveidea/deploy_and_deliver.git
name age message
file .gitignore Wed Sep 23 07:45:14 -0700 2009 Updates for gem version [danielmorrison]
file README Wed Sep 30 08:59:13 -0700 2009 add ssl option in README [brandon]
file Rakefile Wed Sep 23 07:45:14 -0700 2009 Updates for gem version [danielmorrison]
file VERSION Wed Sep 30 08:59:28 -0700 2009 Version bump to 1.0.1 [brandon]
file deploy_and_deliver.gemspec Wed Sep 30 08:59:33 -0700 2009 Regenerated gemspec for version 1.0.1 [brandon]
file install.rb Wed Jun 03 08:25:25 -0700 2009 Initial pluginification. [danielmorrison]
directory lib/ Wed Sep 30 08:57:31 -0700 2009 Added :pivotal_tracker_ssl option which accepts... [zdennis]
directory recipes/ Wed Sep 23 07:42:57 -0700 2009 Allow installation as a gem [danielmorrison]
README
Deploy and Deliver
==================

Capistrano recipes for Pivotal Tracker.


To use this task, simply set the following variables:

  set :pivotal_tracker_project_id, PROJECT_ID
  set :pivotal_tracker_token, TOKEN
  set :pivotal_tracker_ssl, false

Then, inside the task for your demo platform, add

  task :demo do
    ...
    after :deploy, 'pivotal_tracker:deliver_stories'
  end


Installation
============

Install as a plugin:

  script/plugin install git://github.com/collectiveidea/deploy_and_deliver.git


Install as a gem:

  gem install collectiveidea-deploy_and_deliver --source http://gems.github.com

  Add the following in your Capistrano config to load the recipes:

    require 'deploy_and_deliver/recipes'

Bonus Output
============


As an added bonus, if you have Paul Dix's sax-machine gem installed (it's a SAX object parser that uses nokogiri), 
you'll even get a brief summary report of the delivered stories in your cap output.


Credits
=======

Pluginized and Gemified by Collective Idea (http://collectiveidea.com) based on code from Mike Dalessio, Pivotal Labs 
(http://pivotallabs.com/users/miked/blog/articles/702-deliver-tracker-stories-from-capistrano)