Ruby on Rails 和 CruiseControl.rb

发布于 2024-07-17 13:51:18 字数 169 浏览 8 评论 0原文

如何使用 CruiseControl.rb 设置电子邮件通知? 我已在 site-config.rb 中指定了 ActionMailer::Base.smtp_settings,但在哪里指定谁将收到电子邮件通知? 我需要创建 config.xml 文件吗? 如果是这样,我应该将该文件放在哪里?您有该文件内容的示例吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

家住魔仙堡 2024-07-24 13:51:18

这实际上是在项目特定的 Cruise_config.rb 文件中指定的。

这实际上是在每个 ~/.cruise/projects/ 目录中为您创建的。

一个例子如下:

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

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
苦笑流年记忆 2024-07-24 13:51:18

查看 config/site_config.rb。 有一个注释掉的模板用于启用电子邮件通知。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文