subordinate 0.5.1 → 0.5.2
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/README.md +9 -1
- data/lib/subordinate/version.rb +1 -1
- data/spec/spec_helper.rb +2 -0
- data/subordinate.gemspec +1 -0
- metadata +19 -3
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Subordinate [](https://travis-ci.org/jasontruluck/subordinate) [](https://codeclimate.com/github/jasontruluck/subordinate)
|
|
1
|
+
# Subordinate [](https://travis-ci.org/jasontruluck/subordinate) [](https://codeclimate.com/github/jasontruluck/subordinate) [](https://coveralls.io/r/jasontruluck/subordinate)
|
|
2
2
|
|
|
3
3
|
Subordinate is a api wrapper for the Jenkins API. It is not exhaustive at the moment and is being built out.
|
|
4
4
|
|
|
@@ -109,6 +109,14 @@ Retrieves the current build queue for the Jenkins server
|
|
|
109
109
|
client.build_queue
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
+
### [Build Executor](http://rdoc.info/github/jasontruluck/subordinate/master/Subordinate/Client/Executor)
|
|
113
|
+
|
|
114
|
+
Retrieves the build executors status and information from the Jenkins server
|
|
115
|
+
|
|
116
|
+
```ruby
|
|
117
|
+
client.build_executor
|
|
118
|
+
```
|
|
119
|
+
|
|
112
120
|
### [Load Statistics](http://rdoc.info/github/jasontruluck/subordinate/master/Subordinate/Client/Load)
|
|
113
121
|
|
|
114
122
|
Retrieves the load statistics from the Jenkins server
|
data/lib/subordinate/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
data/subordinate.gemspec
CHANGED
|
@@ -24,6 +24,7 @@ Gem::Specification.new do |gem|
|
|
|
24
24
|
gem.add_development_dependency "webmock"
|
|
25
25
|
gem.add_development_dependency "simplecov"
|
|
26
26
|
gem.add_development_dependency "capybara"
|
|
27
|
+
gem.add_development_dependency "coveralls"
|
|
27
28
|
gem.add_development_dependency "yard"
|
|
28
29
|
gem.add_development_dependency "redcarpet"
|
|
29
30
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: subordinate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -187,6 +187,22 @@ dependencies:
|
|
|
187
187
|
- - ! '>='
|
|
188
188
|
- !ruby/object:Gem::Version
|
|
189
189
|
version: '0'
|
|
190
|
+
- !ruby/object:Gem::Dependency
|
|
191
|
+
name: coveralls
|
|
192
|
+
requirement: !ruby/object:Gem::Requirement
|
|
193
|
+
none: false
|
|
194
|
+
requirements:
|
|
195
|
+
- - ! '>='
|
|
196
|
+
- !ruby/object:Gem::Version
|
|
197
|
+
version: '0'
|
|
198
|
+
type: :development
|
|
199
|
+
prerelease: false
|
|
200
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
201
|
+
none: false
|
|
202
|
+
requirements:
|
|
203
|
+
- - ! '>='
|
|
204
|
+
- !ruby/object:Gem::Version
|
|
205
|
+
version: '0'
|
|
190
206
|
- !ruby/object:Gem::Dependency
|
|
191
207
|
name: yard
|
|
192
208
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -274,7 +290,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
274
290
|
version: '0'
|
|
275
291
|
segments:
|
|
276
292
|
- 0
|
|
277
|
-
hash: -
|
|
293
|
+
hash: -1294169811619454959
|
|
278
294
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
279
295
|
none: false
|
|
280
296
|
requirements:
|
|
@@ -283,7 +299,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
283
299
|
version: '0'
|
|
284
300
|
segments:
|
|
285
301
|
- 0
|
|
286
|
-
hash: -
|
|
302
|
+
hash: -1294169811619454959
|
|
287
303
|
requirements: []
|
|
288
304
|
rubyforge_project:
|
|
289
305
|
rubygems_version: 1.8.24
|