greenscreen 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 33b7a409b015ff617671ee0e7b406b574e063a18
4
+ data.tar.gz: e441728f6c3f93d9b82b98a0d866107f0558b448
5
+ SHA512:
6
+ metadata.gz: ab5ba191df7352369ac2cf130494d62f3b51e645e9f7e9975c6185dcf3fcdd3bb95ca9a2a1b8eeba1ccb7d7b4b17fd53d4f077f061ec16144afcbefe0de08157
7
+ data.tar.gz: c630d5a71df076ccc30d7e1fdcb7b80c22a1b6bca9748d8410caea0f6b22d3f154f5610f368f2296bcfc339512dbf39c51e96b2a13bba0a2bfdd3525a9be2ac3
@@ -20,9 +20,9 @@ EOT
20
20
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
21
21
  s.require_paths = ["lib"]
22
22
 
23
- s.add_runtime_dependency "sinatra", "~> 1.2.0"
23
+ s.add_runtime_dependency "sinatra", "~> 1.4"
24
24
  s.add_runtime_dependency "thin"
25
- s.add_runtime_dependency "clamp", "~> 0.2.3"
26
- s.add_runtime_dependency "hashie", ">= 1.2.0"
25
+ s.add_runtime_dependency "clamp", "~> 0.6.1"
26
+ s.add_runtime_dependency "hashie", "~> 3.4.1"
27
27
 
28
28
  end
@@ -41,7 +41,7 @@ module GreenScreen
41
41
 
42
42
  def load_cc_xml(url)
43
43
  xml = REXML::Document.new(open(url))
44
- xml.elements["//Projects"].map do |project_element|
44
+ xml.elements.to_a("Projects/Project").map do |project_element|
45
45
  data = project_element.attributes
46
46
  Job.new.tap do |job|
47
47
  job.name = data["name"]
@@ -1,3 +1,3 @@
1
1
  module GreenScreen
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -1 +1,20 @@
1
- <Projects><Project webUrl="http://jenkins.example.com/job/one/" name="one" lastBuildLabel="108" lastBuildTime="2011-09-28T07:15:16Z" lastBuildStatus="Success" activity="Sleeping"/><Project webUrl="http://jenkins.example.com/job/two/" name="two" lastBuildLabel="666" lastBuildTime="2011-02-15T09:00:13Z" lastBuildStatus="Failure" activity="Sleeping"/><Project webUrl="http://jenkins.example.com/job/three/" name="three" lastBuildLabel="666" lastBuildTime="2011-02-15T09:00:13Z" lastBuildStatus="Failure" activity="Building"/></Projects>
1
+ <Projects>
2
+ <Project webUrl="http://jenkins.example.com/job/one/" name="one" lastBuildLabel="108"
3
+ lastBuildTime="2011-09-28T07:15:16Z" lastBuildStatus="Success" activity="Sleeping"/>
4
+ <Project webUrl="http://jenkins.example.com/job/two/" name="two" lastBuildLabel="666"
5
+ lastBuildTime="2011-02-15T09:00:13Z" lastBuildStatus="Failure" activity="Sleeping"/>
6
+ <Project webUrl="http://jenkins.example.com/job/three/" name="three" lastBuildLabel="666"
7
+ lastBuildTime="2011-02-15T09:00:13Z" lastBuildStatus="Failure" activity="Building"/>
8
+ <Project webUrl="http://jenkins.example.com/job/4/" name="four" lastBuildLabel="108"
9
+ lastBuildTime="2011-09-28T07:15:16Z" lastBuildStatus="Success" activity="Sleeping"/>
10
+ <Project webUrl="http://jenkins.example.com/job/5/" name="five" lastBuildLabel="666"
11
+ lastBuildTime="2011-02-15T09:00:13Z" lastBuildStatus="Failure" activity="Sleeping"/>
12
+ <Project webUrl="http://jenkins.example.com/job/6/" name="six" lastBuildLabel="666"
13
+ lastBuildTime="2011-02-15T09:00:13Z" lastBuildStatus="Failure" activity="Building"/>
14
+ <Project webUrl="http://jenkins.example.com/job/7/" name="seven" lastBuildLabel="108"
15
+ lastBuildTime="2011-09-28T07:15:16Z" lastBuildStatus="Success" activity="Sleeping"/>
16
+ <Project webUrl="http://jenkins.example.com/job/8/" name="eight" lastBuildLabel="666"
17
+ lastBuildTime="2011-02-15T09:00:13Z" lastBuildStatus="Failure" activity="Sleeping"/>
18
+ <Project webUrl="http://jenkins.example.com/job/9/" name="nine" lastBuildLabel="666"
19
+ lastBuildTime="2011-02-15T09:00:13Z" lastBuildStatus="Failure" activity="Building"/>
20
+ </Projects>
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: greenscreen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
5
- prerelease:
4
+ version: 0.1.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Marty Andrews
@@ -10,58 +9,66 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2011-11-08 00:00:00.000000000 Z
12
+ date: 2015-04-27 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: sinatra
17
- requirement: &70210604563460 !ruby/object:Gem::Requirement
18
- none: false
16
+ requirement: !ruby/object:Gem::Requirement
19
17
  requirements:
20
- - - ~>
18
+ - - "~>"
21
19
  - !ruby/object:Gem::Version
22
- version: 1.2.0
20
+ version: '1.4'
23
21
  type: :runtime
24
22
  prerelease: false
25
- version_requirements: *70210604563460
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '1.4'
26
28
  - !ruby/object:Gem::Dependency
27
29
  name: thin
28
- requirement: &70210604562680 !ruby/object:Gem::Requirement
29
- none: false
30
+ requirement: !ruby/object:Gem::Requirement
30
31
  requirements:
31
- - - ! '>='
32
+ - - ">="
32
33
  - !ruby/object:Gem::Version
33
34
  version: '0'
34
35
  type: :runtime
35
36
  prerelease: false
36
- version_requirements: *70210604562680
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
37
42
  - !ruby/object:Gem::Dependency
38
43
  name: clamp
39
- requirement: &70210604561200 !ruby/object:Gem::Requirement
40
- none: false
44
+ requirement: !ruby/object:Gem::Requirement
41
45
  requirements:
42
- - - ~>
46
+ - - "~>"
43
47
  - !ruby/object:Gem::Version
44
- version: 0.2.3
48
+ version: 0.6.1
45
49
  type: :runtime
46
50
  prerelease: false
47
- version_requirements: *70210604561200
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: 0.6.1
48
56
  - !ruby/object:Gem::Dependency
49
57
  name: hashie
50
- requirement: &70210604560600 !ruby/object:Gem::Requirement
51
- none: false
58
+ requirement: !ruby/object:Gem::Requirement
52
59
  requirements:
53
- - - ! '>='
60
+ - - "~>"
54
61
  - !ruby/object:Gem::Version
55
- version: 1.2.0
62
+ version: 3.4.1
56
63
  type: :runtime
57
64
  prerelease: false
58
- version_requirements: *70210604560600
59
- description: ! 'GreenScreen is a build monitoring tool that is designed to be used
60
- as a dynamic Big Visible Chart (BVC) in your work area. It displays the status
61
- of builds from one or more build servers on a monitor, so that the team can see
62
- the status from anywhere in the room.
63
-
64
- '
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: 3.4.1
70
+ description: |
71
+ GreenScreen is a build monitoring tool that is designed to be used as a dynamic Big Visible Chart (BVC) in your work area. It displays the status of builds from one or more build servers on a monitor, so that the team can see the status from anywhere in the room.
65
72
  email:
66
73
  - marty@cogentconsulting.com.au
67
74
  - mike@cogentconsulting.com.au
@@ -70,7 +77,7 @@ executables:
70
77
  extensions: []
71
78
  extra_rdoc_files: []
72
79
  files:
73
- - .gitignore
80
+ - ".gitignore"
74
81
  - Gemfile
75
82
  - README.md
76
83
  - Rakefile
@@ -85,32 +92,25 @@ files:
85
92
  - sample/test-cc.xml
86
93
  homepage: ''
87
94
  licenses: []
95
+ metadata: {}
88
96
  post_install_message:
89
97
  rdoc_options: []
90
98
  require_paths:
91
99
  - lib
92
100
  required_ruby_version: !ruby/object:Gem::Requirement
93
- none: false
94
101
  requirements:
95
- - - ! '>='
102
+ - - ">="
96
103
  - !ruby/object:Gem::Version
97
104
  version: '0'
98
- segments:
99
- - 0
100
- hash: -105452678499442789
101
105
  required_rubygems_version: !ruby/object:Gem::Requirement
102
- none: false
103
106
  requirements:
104
- - - ! '>='
107
+ - - ">="
105
108
  - !ruby/object:Gem::Version
106
109
  version: '0'
107
- segments:
108
- - 0
109
- hash: -105452678499442789
110
110
  requirements: []
111
111
  rubyforge_project:
112
- rubygems_version: 1.8.10
112
+ rubygems_version: 2.4.5
113
113
  signing_key:
114
- specification_version: 3
114
+ specification_version: 4
115
115
  summary: Makes the status of your builds highly visible
116
116
  test_files: []