GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Continuous integration made trivial
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/continuous_builder.git
name age message
file README.txt Mon Oct 02 17:14:36 -0700 2006 Added Campfire notification support [DHH] [dhh]
directory lib/ Mon Oct 02 17:14:36 -0700 2006 Added Campfire notification support [DHH] [dhh]
directory tasks/ Tue Oct 10 11:38:04 -0700 2006 Fix mailer for CB (closes #6372) [dhh]
README.txt
Continuous Builder
=================

Continuous integration made trivial.

Subversion post-commit hook for email:

DEVELOPERS=david@loudthinking.com
BUILDER="'Continuous Builder' <cb@37signals.com>"

cd /u/apps/your/app    && /usr/local/bin/rake -t test_latest_revision NAME=YourApp RECIPIENTS="$DEVELOPERS" 
SENDER="$BUILDER" &
cd /u/apps/another/app && /usr/local/bin/rake -t test_latest_revision NAME=AnotherApp RECIPIENTS="$DEVELOPERS" 
SENDER="$BUILDER" &


Subversion post-commit hook for Campfire:

CAMPFIRE_URL  = 'https://username:password@domain.campfirenow.com/rooms/1234'
CHANGESET_URL = 'https://dev.example.com/trac/changeset/'

cd /u/apps/your/app    && /usr/local/bin/rake -t test_latest_revision NAME=YourApp    CAMPFIRE_URL="$CAMPFIRE_URL" 
CHANGESET_URL="$CHANGESET_URL" &
cd /u/apps/another/app && /usr/local/bin/rake -t test_latest_revision NAME=AnotherApp CAMPFIRE_URL="$CAMPFIRE_URL" 
CHANGESET_URL="$CHANGESET_URL" &