collectiveidea / deploy_and_deliver
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (3)
- Wiki (1)
- Graphs
-
Tag:
v1.0.0
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
README | ||
| |
Rakefile | ||
| |
VERSION | ||
| |
deploy_and_deliver.gemspec | ||
| |
install.rb | ||
| |
lib/ | ||
| |
recipes/ |
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
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)

