public
Description: A universal interface to import email contacts from various providers including Yahoo, Gmail, Hotmail, AOL and Plaxo.
Homepage: http://rubyforge.org/projects/contacts
Clone URL: git://github.com/cardmagic/contacts.git
Click here to lend your support to: contacts and make a donation at www.pledgie.com !
commit  42b49ad5f5a9b0554f0560634fcf29e1a929a424
tree    9e347ac888153d1c7f92391c371c072840ed1b66
parent  b96b8ea7884fda5da08372899ae911e3e074ca57
contacts / cruise_config.rb
100644 22 lines (15 sloc) 0.974 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)
  # if building this on your own CI box, please remove!
   project.email_notifier.emails = ['opensource@pivotallabs.com']
 
  # Set email 'from' field to john@doe.com:
  # project.email_notifier.from = 'john@doe.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
  # [cruise]/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