bellows 1.0.5 → 1.0.6
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/CHANGELOG +4 -1
- data/VERSION +1 -1
- data/lib/bellows/gerrit.rb +1 -1
- data/lib/bellows/smoke_stack.rb +1 -1
- data/lib/bellows/tasks.rb +1 -1
- metadata +4 -4
data/CHANGELOG
CHANGED
@@ -1,4 +1,7 @@
|
|
1
|
-
*
|
1
|
+
* Sun Dec 4 2011 Dan Prince <dan.prince@rackspace.com> - 1.0.6
|
2
|
+
- Truncate revisions for job git hashes.
|
3
|
+
|
4
|
+
* Sat Dec 3 2011 Dan Prince <dan.prince@rackspace.com> - 1.0.5
|
2
5
|
- Add 'fire' task to run jobs for reviews without results.
|
3
6
|
- Add --quiet option to all tasks.
|
4
7
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.6
|
data/lib/bellows/gerrit.rb
CHANGED
@@ -9,7 +9,7 @@ module Bellows
|
|
9
9
|
|
10
10
|
def self.reviews(project, status="open", branch="master")
|
11
11
|
reviews = []
|
12
|
-
out=Gerrit.run_cmd(%{query
|
12
|
+
out=Gerrit.run_cmd(%{query status:#{status} project:openstack/#{project} branch:#{branch} limit:500 --current-patch-set --format JSON})
|
13
13
|
out.each_line do |line|
|
14
14
|
data = JSON.parse(line)
|
15
15
|
if data['project'] and data['project'] == "openstack/#{project}" and data['branch'] and data['branch'] == branch
|
data/lib/bellows/smoke_stack.rb
CHANGED
data/lib/bellows/tasks.rb
CHANGED
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: 27
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 6
|
10
|
+
version: 1.0.6
|
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: 2011-12-
|
18
|
+
date: 2011-12-04 00:00:00 -05:00
|
19
19
|
default_executable: bellows
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|