ci_status 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/ci_status.gemspec +1 -1
- data/lib/ci_status/cruise_control.rb +4 -0
- data/test/test_cruise_control.rb +7 -0
- metadata +2 -1
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
pkg/
|
data/ci_status.gemspec
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Gem::Specification.new "ci_status", "0.1.
|
1
|
+
Gem::Specification.new "ci_status", "0.1.1" do |s|
|
2
2
|
s.summary = "CI status interface"
|
3
3
|
s.description = "Library for reading, parsing and presenting cruise control style build status pages (think CCMenu, CCTray)"
|
4
4
|
s.authors = [ "Morten Primdahl" ]
|
data/test/test_cruise_control.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ci_status
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -98,6 +98,7 @@ executables: []
|
|
98
98
|
extensions: []
|
99
99
|
extra_rdoc_files: []
|
100
100
|
files:
|
101
|
+
- .gitignore
|
101
102
|
- Gemfile
|
102
103
|
- Gemfile.lock
|
103
104
|
- MIT-LICENSE.txt
|