You are here: Browse Railsplugins Svn Messages
This rails plugin helps me keep clients up to date on the status of projects. It uses capistrano 2 (Multistage). I use it in 2 instances – whenever I deploy a site, and whenever I send a weekly status report. For a deployment, this is what I type at the command line:
cap staging svn:deployment_report
This gives me the following output:
Deployment to staging (Revision 34) I deployed the latest. It includes:
I could have also typed: cap production svn:deployment_report
For a weekly status report, I type the following:
cap svn:messages r=70 u=domelia
70 is the oldest subversion revision I care about. domelia is me. I specify this because I only care about the svn commits that I personally made. This gives me the following output:
I like the plugin because I can keep clients up to date and spend very little time doing it.
To install:
svn export https://terralien.devguard.com/svn/projects/plugins/svn_messages vendor/plugins/svn_messages
If you’d like this deployment report to happen every time you deploy, you can add the folllowing to your deploy.rb: before “deploy:update_code”, “svn:deployment_report”
Copyright© 2007 Duff OMelia, released under the MIT license
NOTE: This description has been extracted from the Plugin README and so the formatting may need updating to make browser friendly