Max
Max

Reputation: 287

Ruby on Rails and CruiseControl.rb

How do I set up the email notification with CruiseControl.rb? I've specified the ActionMailer::Base.smtp_settings in the site-config.rb but where do I specify who will receive the email notification? Do I need to create a config.xml file? If so, where do I put the file and do you have an example of the contents of this file?

Upvotes: 1

Views: 912

Answers (2)

Jeremy Lightsmith
Jeremy Lightsmith

Reputation:

This is actually specified in the project specific cruise_config.rb file.

This is actually created for you in each ~/.cruise/projects/ directory.

An example one looks like this :

Project.configure do |project|
  project.email_notifier.emails = ["[email protected]"]
end

Upvotes: 4

Sam Coles
Sam Coles

Reputation: 4043

Look in config/site_config.rb. There is a commented out template for enabling email notification.

Upvotes: 1

Related Questions