4bdf703ab2
This release upgrades Instiki to Rails 2.3.4, which patches two security holes in Rails. See http://weblog.rubyonrails.org/2009/9/4/ruby-on-rails-2-3-4 There are also some new features, and the usual boatload of bugfixes. See the CHANGELOG for details.
10 lines
421 B
Ruby
10 lines
421 B
Ruby
Project.configure do |project|
|
|
# Send email notifications about broken and fixed builds to core mailing list
|
|
if Socket.gethostname =~ /ci.rubyonrails.org/ && ENV['ENABLE_RAILS_CI_EMAILS'] == 'true'
|
|
project.email_notifier.emails = ['rubyonrails-core@googlegroups.com']
|
|
end
|
|
|
|
project.build_command = 'sudo gem update --system && ruby ci/ci_build.rb'
|
|
project.email_notifier.from = 'thewoolleyman@gmail.com'
|
|
end
|