deploy_and_deliver icon indicating copy to clipboard operation
deploy_and_deliver copied to clipboard

Capistrano recipes for Pivotal Tracker. Can mark stories delivered on deploy.

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

Add to your Gemfile

gem 'deploy_and_deliver'

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

require 'deploy_and_deliver/recipes'

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)

Later updated to use the pivotal-tracker gem.