build_status_server 0.4 → 0.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/build_status_server.gemspec +8 -1
- data/lib/build_status_server/version.rb +1 -1
- metadata +4 -4
data/build_status_server.gemspec
CHANGED
|
@@ -10,7 +10,14 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.email = "jcmuller@gmail.com"
|
|
11
11
|
s.homepage = "http://github.com/jcmuller/build_status_server"
|
|
12
12
|
s.license = "GPL"
|
|
13
|
-
s.summary =
|
|
13
|
+
s.summary = <<-EOS
|
|
14
|
+
This utility is part of an XFD (eXtreeme Feedback Device) solution designed and
|
|
15
|
+
built for my employer ChallengePost (http://challengepost.com). It works in
|
|
16
|
+
conjunction with our Jenkins Continuous Integration server (and its
|
|
17
|
+
Notification Plugin)) and an Arduino powered Traffic Light controller
|
|
18
|
+
(https://github.com/jcmuller/TrafficLightController) with a pseudo-RESTful API.
|
|
19
|
+
|
|
20
|
+
EOS
|
|
14
21
|
s.description = "A build notifier server for Jenkins CI that controls an XFD over HTTP"
|
|
15
22
|
|
|
16
23
|
s.files = Dir["{lib/**/*,spec/**/*}"] + %w(bin/build_status_server config/config-example.yml LICENSE README.md Gemfile Gemfile.lock build_status_server.gemspec)
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: build_status_server
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 1
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: "0.
|
|
8
|
+
- 5
|
|
9
|
+
version: "0.5"
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Juan C. Muller
|
|
@@ -121,6 +121,6 @@ rubyforge_project:
|
|
|
121
121
|
rubygems_version: 1.6.2
|
|
122
122
|
signing_key:
|
|
123
123
|
specification_version: 3
|
|
124
|
-
summary:
|
|
124
|
+
summary: This utility is part of an XFD (eXtreeme Feedback Device) solution designed and built for my employer ChallengePost (http://challengepost.com). It works in conjunction with our Jenkins Continuous Integration server (and its Notification Plugin)) and an Arduino powered Traffic Light controller (https://github.com/jcmuller/TrafficLightController) with a pseudo-RESTful API.
|
|
125
125
|
test_files:
|
|
126
126
|
- spec/lib/build_status_server_spec.rb
|