bellows 1.0.9 → 1.0.10
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +5 -0
- data/VERSION +1 -1
- data/lib/bellows/smoke_stack.rb +1 -1
- metadata +4 -4
data/CHANGELOG
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
* Mon Jan 9 2012 Dan Prince <dan.prince@rackspace.com> - 1.0.10
|
2
|
+
- Fix 'undefined method `[]' for nil:NilClass' error that could occur in
|
3
|
+
the approved? method of smoke_stack.rb. This error was keeping bellows
|
4
|
+
from commenting on some merge props...
|
5
|
+
|
1
6
|
* Fri Dec 23 2011 Dan Prince <dan.prince@rackspace.com> - 1.0.9
|
2
7
|
- Update the 'comment' task so that only an approved set of results generates
|
3
8
|
a gerrit comment. Successful result sets are automatically approved.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.10
|
data/lib/bellows/smoke_stack.rb
CHANGED
@@ -112,7 +112,7 @@ module Bellows
|
|
112
112
|
def self.approved?(job_datas)
|
113
113
|
approved = true
|
114
114
|
job_datas.each do |data|
|
115
|
-
if data.nil? or data['status'] == 'Failed' and data['approved_by'].nil?
|
115
|
+
if data.nil? or (data['status'] == 'Failed' and data['approved_by'].nil?)
|
116
116
|
approved = false
|
117
117
|
end
|
118
118
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bellows
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 3
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 10
|
10
|
+
version: 1.0.10
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Dan Prince
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2012-01-09 00:00:00 -05:00
|
19
19
|
default_executable: bellows
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|