Skip to content

Commit

Permalink
CruiseControl.rb config file pointing to dev mailing list
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://rubyforge.org/var/svn/rubygems/trunk@2125 3d4018f9-ac1a-0410-99e9-8a154d859a19
  • Loading branch information
thewoolleyman committed Apr 2, 2009
1 parent 237f16d commit 1c6542f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions cruise_config.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Project-specific configuration for CruiseControl.rb

Project.configure do |project|

# Send email notifications about broken and fixed builds to email1@your.site, email2@your.site (default: send to nobody)
project.email_notifier.emails = ['rubygems-developers@rubyforge.org']

# Set email 'from' field to john@doe.com:
project.email_notifier.from = 'devnull+rubygems-ci@pivotallabs.com'

# Build the project by invoking rake task 'custom'
# project.rake_task = 'custom'

# Build the project by invoking shell script "build_my_app.sh". Keep in mind that when the script is invoked,
# current working directory is <em>[cruise&nbsp;data]</em>/projects/your_project/work, so if you do not keep build_my_app.sh
# in version control, it should be '../build_my_app.sh' instead
# project.build_command = 'build_my_app.sh'

# Ping Subversion for new revisions every 5 minutes (default: 30 seconds)
project.scheduler.polling_interval = 5.minutes

end

0 comments on commit 1c6542f

Please sign in to comment.