iron_titan 0.3.7 → 0.3.8
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.
- checksums.yaml +4 -4
- data/README.md +20 -20
- data/lib/iron_titan/api/groups_api.rb +1 -1
- data/lib/iron_titan/api/jobs_api.rb +136 -136
- data/lib/iron_titan/api/runner_api.rb +37 -37
- data/lib/iron_titan/api_client.rb +1 -1
- data/lib/iron_titan/api_error.rb +1 -1
- data/lib/iron_titan/models/complete.rb +1 -1
- data/lib/iron_titan/models/error.rb +1 -1
- data/lib/iron_titan/models/error_body.rb +1 -1
- data/lib/iron_titan/models/group.rb +1 -1
- data/lib/iron_titan/models/group_wrapper.rb +1 -1
- data/lib/iron_titan/models/groups_wrapper.rb +1 -1
- data/lib/iron_titan/models/id_status.rb +1 -1
- data/lib/iron_titan/models/job.rb +8 -8
- data/lib/iron_titan/models/job_wrapper.rb +1 -1
- data/lib/iron_titan/models/jobs_wrapper.rb +1 -1
- data/lib/iron_titan/models/new_job.rb +1 -1
- data/lib/iron_titan/models/new_jobs_wrapper.rb +1 -1
- data/lib/iron_titan/models/start.rb +1 -1
- data/lib/iron_titan/version.rb +2 -2
- data/lib/iron_titan.rb +1 -1
- data/spec/api/groups_api_spec.rb +1 -1
- data/spec/api/jobs_api_spec.rb +37 -37
- data/spec/api/runner_api_spec.rb +10 -10
- data/spec/models/complete_spec.rb +1 -1
- data/spec/models/error_body_spec.rb +1 -1
- data/spec/models/error_spec.rb +1 -1
- data/spec/models/group_spec.rb +1 -1
- data/spec/models/group_wrapper_spec.rb +1 -1
- data/spec/models/groups_wrapper_spec.rb +1 -1
- data/spec/models/id_status_spec.rb +1 -1
- data/spec/models/job_spec.rb +2 -2
- data/spec/models/job_wrapper_spec.rb +1 -1
- data/spec/models/jobs_wrapper_spec.rb +1 -1
- data/spec/models/new_job_spec.rb +1 -1
- data/spec/models/new_jobs_wrapper_spec.rb +1 -1
- data/spec/models/start_spec.rb +1 -1
- metadata +2 -2
data/spec/api/runner_api_spec.rb
CHANGED
@@ -3,7 +3,7 @@ Titan API
|
|
3
3
|
|
4
4
|
The ultimate, language agnostic, container based job processing framework.
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.3.
|
6
|
+
OpenAPI spec version: 0.3.8
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -32,15 +32,15 @@ describe 'RunnerApi' do
|
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
|
-
# unit tests for
|
35
|
+
# unit tests for groups_name_jobs_id_error_post
|
36
36
|
# Mark job as failed.
|
37
37
|
# Job is marked as failed if it was in a valid state. Job's `finished_at` time is initialized.
|
38
|
-
# @param
|
38
|
+
# @param name Name of group for this set of jobs.
|
39
39
|
# @param id Job id
|
40
40
|
# @param body
|
41
41
|
# @param [Hash] opts the optional parameters
|
42
42
|
# @return [JobWrapper]
|
43
|
-
describe '
|
43
|
+
describe 'groups_name_jobs_id_error_post test' do
|
44
44
|
it "should work" do
|
45
45
|
# assertion here
|
46
46
|
# should be_a()
|
@@ -50,15 +50,15 @@ describe 'RunnerApi' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
# unit tests for
|
53
|
+
# unit tests for groups_name_jobs_id_start_post
|
54
54
|
# Mark job as started, ie: status = 'running'
|
55
55
|
# Job status is changed to 'running' if it was in a valid state before. Job's `started_at` time is initialized.
|
56
|
-
# @param
|
56
|
+
# @param name Name of group for this set of jobs.
|
57
57
|
# @param id Job id
|
58
58
|
# @param body
|
59
59
|
# @param [Hash] opts the optional parameters
|
60
60
|
# @return [JobWrapper]
|
61
|
-
describe '
|
61
|
+
describe 'groups_name_jobs_id_start_post test' do
|
62
62
|
it "should work" do
|
63
63
|
# assertion here
|
64
64
|
# should be_a()
|
@@ -68,15 +68,15 @@ describe 'RunnerApi' do
|
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
-
# unit tests for
|
71
|
+
# unit tests for groups_name_jobs_id_success_post
|
72
72
|
# Mark job as succeeded.
|
73
73
|
# Job status is changed to succeeded if it was in a valid state before. Job's `completed_at` time is initialized.
|
74
|
-
# @param
|
74
|
+
# @param name Name of group for this set of jobs.
|
75
75
|
# @param id Job id
|
76
76
|
# @param body
|
77
77
|
# @param [Hash] opts the optional parameters
|
78
78
|
# @return [JobWrapper]
|
79
|
-
describe '
|
79
|
+
describe 'groups_name_jobs_id_success_post test' do
|
80
80
|
it "should work" do
|
81
81
|
# assertion here
|
82
82
|
# should be_a()
|
data/spec/models/error_spec.rb
CHANGED
data/spec/models/group_spec.rb
CHANGED
data/spec/models/job_spec.rb
CHANGED
@@ -3,7 +3,7 @@ Titan API
|
|
3
3
|
|
4
4
|
The ultimate, language agnostic, container based job processing framework.
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.3.
|
6
|
+
OpenAPI spec version: 0.3.8
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -122,7 +122,7 @@ describe 'Job' do
|
|
122
122
|
end
|
123
123
|
end
|
124
124
|
|
125
|
-
describe 'test attribute "
|
125
|
+
describe 'test attribute "name"' do
|
126
126
|
it 'should work' do
|
127
127
|
# assertion here
|
128
128
|
# should be_a()
|
data/spec/models/new_job_spec.rb
CHANGED
data/spec/models/start_spec.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iron_titan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Travis Reeder
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-05-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|