cerberus 0.3.4 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +10 -3
- data/Rakefile +1 -1
- data/lib/cerberus/constants.rb +1 -1
- data/lib/cerberus/publisher/base.rb +1 -1
- data/lib/cerberus/publisher/mail.rb +1 -1
- metadata +4 -4
data/CHANGES
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
= Cerberus Changelog
|
|
2
2
|
|
|
3
|
+
== Version 0.3.5
|
|
4
|
+
Bug fixing
|
|
5
|
+
|
|
6
|
+
* Use smpt_settings config option instead of server_settings for ActionMailer
|
|
7
|
+
* Fixed problem with incorrect state for output messages [cerberus bug #8682]
|
|
8
|
+
|
|
3
9
|
== Version 0.3.4
|
|
4
|
-
Added Cerberus hooks
|
|
10
|
+
Added Cerberus hooks that allow running custom tasks on build finish
|
|
11
|
+
|
|
12
|
+
* Fixed bug with Cerberus::Util spotted by Mohamemd Alvi
|
|
5
13
|
|
|
6
|
-
|
|
7
|
-
Added possibility to add hooks on Cerberus executions. Configuration file format for it is
|
|
14
|
+
* Added possibility to add hooks on Cerberus executions. Configuration file format for it is
|
|
8
15
|
|
|
9
16
|
hook:
|
|
10
17
|
HOOK_NAME:
|
data/Rakefile
CHANGED
|
@@ -50,7 +50,7 @@ GEM_SPEC = Gem::Specification.new do |s|
|
|
|
50
50
|
Cerberus could be easily invoked from Cron (for Unix) or nnCron (for Windows) utilities.
|
|
51
51
|
DESC
|
|
52
52
|
|
|
53
|
-
s.add_dependency 'actionmailer', '>= 1.2
|
|
53
|
+
s.add_dependency 'actionmailer', '>= 1.3.2'
|
|
54
54
|
s.add_dependency 'rake', '>= 0.7.1'
|
|
55
55
|
s.add_dependency 'xmpp4r', '>= 0.3'
|
|
56
56
|
s.add_dependency 'Ruby-IRC', '>= 1.0.7'
|
data/lib/cerberus/constants.rb
CHANGED
|
@@ -26,7 +26,7 @@ module Cerberus
|
|
|
26
26
|
"Build broken by #{manager.scm.last_author} (##{manager.scm.current_revision})"
|
|
27
27
|
when :revival
|
|
28
28
|
"Build fixed by #{manager.scm.last_author} (##{manager.scm.current_revision})"
|
|
29
|
-
when :
|
|
29
|
+
when :succesful
|
|
30
30
|
"Build was successfully built (##{manager.scm.current_revision})"
|
|
31
31
|
else
|
|
32
32
|
raise "Unknown build state '#{state.current_state.to_s}'"
|
|
@@ -23,7 +23,7 @@ class Cerberus::Publisher::Mail < Cerberus::Publisher::Base
|
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
ActionMailer::Base.delivery_method = config[:delivery_method] if config[:delivery_method]
|
|
26
|
-
ActionMailer::Base.
|
|
26
|
+
ActionMailer::Base.smtp_settings = config
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
class ActionMailerPublisher < ActionMailer::Base
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
|
-
rubygems_version: 0.9.
|
|
2
|
+
rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: cerberus
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.3.
|
|
7
|
-
date: 2007-02-
|
|
6
|
+
version: 0.3.5
|
|
7
|
+
date: 2007-02-17 00:00:00 +03:00
|
|
8
8
|
summary: Cerberus is a Continuous Integration tool that could be easily run from Cron.
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
@@ -106,7 +106,7 @@ dependencies:
|
|
|
106
106
|
requirements:
|
|
107
107
|
- - ">="
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
|
-
version: 1.2
|
|
109
|
+
version: 1.3.2
|
|
110
110
|
version:
|
|
111
111
|
- !ruby/object:Gem::Dependency
|
|
112
112
|
name: rake
|