dkron-rb 0.10.0 → 0.11.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +4 -4
- data/README.md +1 -5
- data/config.json +1 -1
- data/dkron-rb.gemspec +2 -2
- data/lib/dkron-rb.rb +1 -5
- data/lib/dkron-rb/api/default_api.rb +1 -1
- data/lib/dkron-rb/api/executions_api.rb +1 -1
- data/lib/dkron-rb/api/jobs_api.rb +1 -1
- data/lib/dkron-rb/api/members_api.rb +1 -1
- data/lib/dkron-rb/api_client.rb +1 -1
- data/lib/dkron-rb/api_error.rb +1 -1
- data/lib/dkron-rb/configuration.rb +1 -1
- data/lib/dkron-rb/models/execution.rb +1 -1
- data/lib/dkron-rb/models/executor_config.rb +1 -1
- data/lib/dkron-rb/models/job.rb +1 -1
- data/lib/dkron-rb/models/member.rb +1 -1
- data/lib/dkron-rb/models/processors.rb +1 -1
- data/lib/dkron-rb/models/status.rb +1 -1
- data/lib/dkron-rb/version.rb +2 -2
- data/node_modules/isarray/build/build.js +209 -0
- data/node_modules/mime/build/build.js +11 -0
- data/node_modules/mime/build/test.js +57 -0
- data/spec/api/default_api_spec.rb +12 -24
- data/spec/api/executions_api_spec.rb +8 -12
- data/spec/api/jobs_api_spec.rb +16 -36
- data/spec/api/members_api_spec.rb +8 -12
- data/spec/api_client_spec.rb +2 -13
- data/spec/configuration_spec.rb +2 -13
- data/spec/models/execution_spec.rb +12 -36
- data/spec/models/executor_config_spec.rb +1 -1
- data/spec/models/job_spec.rb +45 -87
- data/spec/models/member_spec.rb +17 -61
- data/spec/models/processors_spec.rb +1 -1
- data/spec/models/status_spec.rb +6 -6
- data/spec/spec_helper.rb +2 -13
- metadata +10 -27
- data/pkg/dkron-rb-0.9.2.gem +0 -0
- data/seeds.rb +0 -21
- data/spec/api/main_api_spec.rb +0 -65
- data/spec/models/agent_spec.rb +0 -36
- data/spec/models/executor_shell_spec.rb +0 -54
- data/spec/models/inline_response_200_spec.rb +0 -66
- data/spec/models/processor_files_spec.rb +0 -48
- data/spec/models/processor_log_spec.rb +0 -42
- data/spec/models/processor_syslog_spec.rb +0 -42
- data/spec/models/serf_spec.rb +0 -36
- data/spec/models/tags_spec.rb +0 -36
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#You can communicate with Dkron using a RESTful JSON API over HTTP. Dkron nodes usually listen on port `8080` for API requests. All examples in this section assume that you've found a running leader at `localhost:8080`. Dkron implements a RESTful JSON API over HTTP to communicate with software clients. Dkron listens in port `8080` by default. All examples in this section assume that you're using the default port. Default API responses are unformatted JSON add the `pretty=true` param to format the response.
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.
|
6
|
+
OpenAPI spec version: 0.11.2
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
Swagger Codegen version: 2.3.1
|
data/spec/models/job_spec.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
|
-
Dkron REST API
|
2
|
+
#Dkron REST API
|
3
3
|
|
4
|
-
You can communicate with Dkron using a RESTful JSON API over HTTP. Dkron nodes usually listen on port `8080` for API requests. All examples in this section assume that you've found a running leader at `localhost:8080
|
4
|
+
#You can communicate with Dkron using a RESTful JSON API over HTTP. Dkron nodes usually listen on port `8080` for API requests. All examples in this section assume that you've found a running leader at `localhost:8080`. Dkron implements a RESTful JSON API over HTTP to communicate with software clients. Dkron listens in port `8080` by default. All examples in this section assume that you're using the default port. Default API responses are unformatted JSON add the `pretty=true` param to format the response.
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.
|
6
|
+
OpenAPI spec version: 0.11.2
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
|
9
|
+
Swagger Codegen version: 2.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -28,157 +28,115 @@ describe 'Job' do
|
|
28
28
|
end
|
29
29
|
|
30
30
|
describe 'test an instance of Job' do
|
31
|
-
it 'should create an
|
32
|
-
@instance.
|
31
|
+
it 'should create an instance of Job' do
|
32
|
+
expect(@instance).to be_instance_of(Dkron::Job)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
describe 'test attribute "name"' do
|
36
36
|
it 'should work' do
|
37
|
-
# assertion here
|
38
|
-
# should be_a()
|
39
|
-
# should be_nil
|
40
|
-
# should ==
|
41
|
-
# should_not ==
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
42
38
|
end
|
43
39
|
end
|
44
40
|
|
45
41
|
describe 'test attribute "schedule"' do
|
46
42
|
it 'should work' do
|
47
|
-
# assertion here
|
48
|
-
# should be_a()
|
49
|
-
# should be_nil
|
50
|
-
# should ==
|
51
|
-
# should_not ==
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
describe 'test attribute "command"' do
|
56
|
-
it 'should work' do
|
57
|
-
# assertion here
|
58
|
-
# should be_a()
|
59
|
-
# should be_nil
|
60
|
-
# should ==
|
61
|
-
# should_not ==
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
44
|
end
|
63
45
|
end
|
64
46
|
|
65
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "timezone"' do
|
66
48
|
it 'should work' do
|
67
|
-
# assertion here
|
68
|
-
# should be_a()
|
69
|
-
# should be_nil
|
70
|
-
# should ==
|
71
|
-
# should_not ==
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
72
50
|
end
|
73
51
|
end
|
74
52
|
|
75
53
|
describe 'test attribute "owner"' do
|
76
54
|
it 'should work' do
|
77
|
-
# assertion here
|
78
|
-
# should be_a()
|
79
|
-
# should be_nil
|
80
|
-
# should ==
|
81
|
-
# should_not ==
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
82
56
|
end
|
83
57
|
end
|
84
58
|
|
85
59
|
describe 'test attribute "owner_email"' do
|
86
60
|
it 'should work' do
|
87
|
-
# assertion here
|
88
|
-
# should be_a()
|
89
|
-
# should be_nil
|
90
|
-
# should ==
|
91
|
-
# should_not ==
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
62
|
end
|
93
63
|
end
|
94
64
|
|
95
65
|
describe 'test attribute "success_count"' do
|
96
66
|
it 'should work' do
|
97
|
-
# assertion here
|
98
|
-
# should be_a()
|
99
|
-
# should be_nil
|
100
|
-
# should ==
|
101
|
-
# should_not ==
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
102
68
|
end
|
103
69
|
end
|
104
70
|
|
105
71
|
describe 'test attribute "error_count"' do
|
106
72
|
it 'should work' do
|
107
|
-
# assertion here
|
108
|
-
# should be_a()
|
109
|
-
# should be_nil
|
110
|
-
# should ==
|
111
|
-
# should_not ==
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
112
74
|
end
|
113
75
|
end
|
114
76
|
|
115
77
|
describe 'test attribute "last_success"' do
|
116
78
|
it 'should work' do
|
117
|
-
# assertion here
|
118
|
-
# should be_a()
|
119
|
-
# should be_nil
|
120
|
-
# should ==
|
121
|
-
# should_not ==
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
80
|
end
|
123
81
|
end
|
124
82
|
|
125
83
|
describe 'test attribute "last_error"' do
|
126
84
|
it 'should work' do
|
127
|
-
# assertion here
|
128
|
-
# should be_a()
|
129
|
-
# should be_nil
|
130
|
-
# should ==
|
131
|
-
# should_not ==
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
132
86
|
end
|
133
87
|
end
|
134
88
|
|
135
89
|
describe 'test attribute "disabled"' do
|
136
90
|
it 'should work' do
|
137
|
-
# assertion here
|
138
|
-
# should be_a()
|
139
|
-
# should be_nil
|
140
|
-
# should ==
|
141
|
-
# should_not ==
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
142
92
|
end
|
143
93
|
end
|
144
94
|
|
145
95
|
describe 'test attribute "tags"' do
|
146
96
|
it 'should work' do
|
147
|
-
# assertion here
|
148
|
-
# should be_a()
|
149
|
-
# should be_nil
|
150
|
-
# should ==
|
151
|
-
# should_not ==
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
152
98
|
end
|
153
99
|
end
|
154
100
|
|
155
101
|
describe 'test attribute "retries"' do
|
156
102
|
it 'should work' do
|
157
|
-
# assertion here
|
158
|
-
# should be_a()
|
159
|
-
# should be_nil
|
160
|
-
# should ==
|
161
|
-
# should_not ==
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
162
104
|
end
|
163
105
|
end
|
164
106
|
|
165
107
|
describe 'test attribute "parent_job"' do
|
166
108
|
it 'should work' do
|
167
|
-
# assertion here
|
168
|
-
# should be_a()
|
169
|
-
# should be_nil
|
170
|
-
# should ==
|
171
|
-
# should_not ==
|
109
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
172
110
|
end
|
173
111
|
end
|
174
112
|
|
175
113
|
describe 'test attribute "dependent_jobs"' do
|
176
114
|
it 'should work' do
|
177
|
-
# assertion here
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
describe 'test attribute "processors"' do
|
120
|
+
it 'should work' do
|
121
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
describe 'test attribute "concurrency"' do
|
126
|
+
it 'should work' do
|
127
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
describe 'test attribute "executor"' do
|
132
|
+
it 'should work' do
|
133
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
describe 'test attribute "executor_config"' do
|
138
|
+
it 'should work' do
|
139
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
182
140
|
end
|
183
141
|
end
|
184
142
|
|
data/spec/models/member_spec.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
|
-
Dkron REST API
|
2
|
+
#Dkron REST API
|
3
3
|
|
4
|
-
You can communicate with Dkron using a RESTful JSON API over HTTP. Dkron nodes usually listen on port `8080` for API requests. All examples in this section assume that you've found a running leader at `localhost:8080
|
4
|
+
#You can communicate with Dkron using a RESTful JSON API over HTTP. Dkron nodes usually listen on port `8080` for API requests. All examples in this section assume that you've found a running leader at `localhost:8080`. Dkron implements a RESTful JSON API over HTTP to communicate with software clients. Dkron listens in port `8080` by default. All examples in this section assume that you're using the default port. Default API responses are unformatted JSON add the `pretty=true` param to format the response.
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.
|
6
|
+
OpenAPI spec version: 0.11.2
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
|
9
|
+
Swagger Codegen version: 2.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -28,117 +28,73 @@ describe 'Member' do
|
|
28
28
|
end
|
29
29
|
|
30
30
|
describe 'test an instance of Member' do
|
31
|
-
it 'should create an
|
32
|
-
@instance.
|
31
|
+
it 'should create an instance of Member' do
|
32
|
+
expect(@instance).to be_instance_of(Dkron::Member)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
describe 'test attribute "name"' do
|
36
36
|
it 'should work' do
|
37
|
-
# assertion here
|
38
|
-
# should be_a()
|
39
|
-
# should be_nil
|
40
|
-
# should ==
|
41
|
-
# should_not ==
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
42
38
|
end
|
43
39
|
end
|
44
40
|
|
45
41
|
describe 'test attribute "addr"' do
|
46
42
|
it 'should work' do
|
47
|
-
# assertion here
|
48
|
-
# should be_a()
|
49
|
-
# should be_nil
|
50
|
-
# should ==
|
51
|
-
# should_not ==
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
52
44
|
end
|
53
45
|
end
|
54
46
|
|
55
47
|
describe 'test attribute "port"' do
|
56
48
|
it 'should work' do
|
57
|
-
# assertion here
|
58
|
-
# should be_a()
|
59
|
-
# should be_nil
|
60
|
-
# should ==
|
61
|
-
# should_not ==
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
50
|
end
|
63
51
|
end
|
64
52
|
|
65
53
|
describe 'test attribute "tags"' do
|
66
54
|
it 'should work' do
|
67
|
-
# assertion here
|
68
|
-
# should be_a()
|
69
|
-
# should be_nil
|
70
|
-
# should ==
|
71
|
-
# should_not ==
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
72
56
|
end
|
73
57
|
end
|
74
58
|
|
75
59
|
describe 'test attribute "status"' do
|
76
60
|
it 'should work' do
|
77
|
-
# assertion here
|
78
|
-
# should be_a()
|
79
|
-
# should be_nil
|
80
|
-
# should ==
|
81
|
-
# should_not ==
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
82
62
|
end
|
83
63
|
end
|
84
64
|
|
85
65
|
describe 'test attribute "protocol_min"' do
|
86
66
|
it 'should work' do
|
87
|
-
# assertion here
|
88
|
-
# should be_a()
|
89
|
-
# should be_nil
|
90
|
-
# should ==
|
91
|
-
# should_not ==
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
68
|
end
|
93
69
|
end
|
94
70
|
|
95
71
|
describe 'test attribute "protocol_max"' do
|
96
72
|
it 'should work' do
|
97
|
-
# assertion here
|
98
|
-
# should be_a()
|
99
|
-
# should be_nil
|
100
|
-
# should ==
|
101
|
-
# should_not ==
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
102
74
|
end
|
103
75
|
end
|
104
76
|
|
105
77
|
describe 'test attribute "protocol_cur"' do
|
106
78
|
it 'should work' do
|
107
|
-
# assertion here
|
108
|
-
# should be_a()
|
109
|
-
# should be_nil
|
110
|
-
# should ==
|
111
|
-
# should_not ==
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
112
80
|
end
|
113
81
|
end
|
114
82
|
|
115
83
|
describe 'test attribute "delegate_min"' do
|
116
84
|
it 'should work' do
|
117
|
-
# assertion here
|
118
|
-
# should be_a()
|
119
|
-
# should be_nil
|
120
|
-
# should ==
|
121
|
-
# should_not ==
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
86
|
end
|
123
87
|
end
|
124
88
|
|
125
89
|
describe 'test attribute "delegate_max"' do
|
126
90
|
it 'should work' do
|
127
|
-
# assertion here
|
128
|
-
# should be_a()
|
129
|
-
# should be_nil
|
130
|
-
# should ==
|
131
|
-
# should_not ==
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
132
92
|
end
|
133
93
|
end
|
134
94
|
|
135
95
|
describe 'test attribute "delegate_cur"' do
|
136
96
|
it 'should work' do
|
137
|
-
# assertion here
|
138
|
-
# should be_a()
|
139
|
-
# should be_nil
|
140
|
-
# should ==
|
141
|
-
# should_not ==
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
142
98
|
end
|
143
99
|
end
|
144
100
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#You can communicate with Dkron using a RESTful JSON API over HTTP. Dkron nodes usually listen on port `8080` for API requests. All examples in this section assume that you've found a running leader at `localhost:8080`. Dkron implements a RESTful JSON API over HTTP to communicate with software clients. Dkron listens in port `8080` by default. All examples in this section assume that you're using the default port. Default API responses are unformatted JSON add the `pretty=true` param to format the response.
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.
|
6
|
+
OpenAPI spec version: 0.11.2
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
Swagger Codegen version: 2.3.1
|
data/spec/models/status_spec.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
|
-
Dkron REST API
|
2
|
+
#Dkron REST API
|
3
3
|
|
4
|
-
You can communicate with Dkron using a RESTful JSON API over HTTP. Dkron nodes usually listen on port `8080` for API requests. All examples in this section assume that you've found a running leader at `localhost:8080
|
4
|
+
#You can communicate with Dkron using a RESTful JSON API over HTTP. Dkron nodes usually listen on port `8080` for API requests. All examples in this section assume that you've found a running leader at `localhost:8080`. Dkron implements a RESTful JSON API over HTTP to communicate with software clients. Dkron listens in port `8080` by default. All examples in this section assume that you're using the default port. Default API responses are unformatted JSON add the `pretty=true` param to format the response.
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.
|
6
|
+
OpenAPI spec version: 0.11.2
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
|
9
|
+
Swagger Codegen version: 2.3.1
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -28,8 +28,8 @@ describe 'Status' do
|
|
28
28
|
end
|
29
29
|
|
30
30
|
describe 'test an instance of Status' do
|
31
|
-
it 'should create an
|
32
|
-
@instance.
|
31
|
+
it 'should create an instance of Status' do
|
32
|
+
expect(@instance).to be_instance_of(Dkron::Status)
|
33
33
|
end
|
34
34
|
end
|
35
35
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -3,21 +3,10 @@
|
|
3
3
|
|
4
4
|
#You can communicate with Dkron using a RESTful JSON API over HTTP. Dkron nodes usually listen on port `8080` for API requests. All examples in this section assume that you've found a running leader at `localhost:8080`. Dkron implements a RESTful JSON API over HTTP to communicate with software clients. Dkron listens in port `8080` by default. All examples in this section assume that you're using the default port. Default API responses are unformatted JSON add the `pretty=true` param to format the response.
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.
|
6
|
+
OpenAPI spec version: 0.11.2
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
|
10
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
11
|
-
you may not use this file except in compliance with the License.
|
12
|
-
You may obtain a copy of the License at
|
13
|
-
|
14
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
15
|
-
|
16
|
-
Unless required by applicable law or agreed to in writing, software
|
17
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
18
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
19
|
-
See the License for the specific language governing permissions and
|
20
|
-
limitations under the License.
|
9
|
+
Swagger Codegen version: 2.3.1
|
21
10
|
|
22
11
|
=end
|
23
12
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dkron-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Swagger-Codegen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -36,20 +36,20 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '
|
39
|
+
version: '1'
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version:
|
42
|
+
version: '1.4'
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: '
|
49
|
+
version: '1'
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version:
|
52
|
+
version: '1.4'
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: rspec
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
@@ -258,29 +258,21 @@ files:
|
|
258
258
|
- lib/dkron-rb/numeric_seconds.rb
|
259
259
|
- lib/dkron-rb/version.rb
|
260
260
|
- lib/dkron.rb
|
261
|
-
-
|
262
|
-
-
|
261
|
+
- node_modules/isarray/build/build.js
|
262
|
+
- node_modules/mime/build/build.js
|
263
|
+
- node_modules/mime/build/test.js
|
263
264
|
- spec/api/default_api_spec.rb
|
264
265
|
- spec/api/executions_api_spec.rb
|
265
266
|
- spec/api/jobs_api_spec.rb
|
266
|
-
- spec/api/main_api_spec.rb
|
267
267
|
- spec/api/members_api_spec.rb
|
268
268
|
- spec/api_client_spec.rb
|
269
269
|
- spec/configuration_spec.rb
|
270
|
-
- spec/models/agent_spec.rb
|
271
270
|
- spec/models/execution_spec.rb
|
272
271
|
- spec/models/executor_config_spec.rb
|
273
|
-
- spec/models/executor_shell_spec.rb
|
274
|
-
- spec/models/inline_response_200_spec.rb
|
275
272
|
- spec/models/job_spec.rb
|
276
273
|
- spec/models/member_spec.rb
|
277
|
-
- spec/models/processor_files_spec.rb
|
278
|
-
- spec/models/processor_log_spec.rb
|
279
|
-
- spec/models/processor_syslog_spec.rb
|
280
274
|
- spec/models/processors_spec.rb
|
281
|
-
- spec/models/serf_spec.rb
|
282
275
|
- spec/models/status_spec.rb
|
283
|
-
- spec/models/tags_spec.rb
|
284
276
|
- spec/spec_helper.rb
|
285
277
|
homepage: https://github.com/swagger-api/swagger-codegen
|
286
278
|
licenses: []
|
@@ -301,30 +293,21 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
301
293
|
version: '0'
|
302
294
|
requirements: []
|
303
295
|
rubyforge_project:
|
304
|
-
rubygems_version: 2.
|
296
|
+
rubygems_version: 2.5.2.3
|
305
297
|
signing_key:
|
306
298
|
specification_version: 4
|
307
299
|
summary: Dkron REST API Ruby Gem
|
308
300
|
test_files:
|
309
301
|
- spec/api/members_api_spec.rb
|
310
302
|
- spec/api/default_api_spec.rb
|
311
|
-
- spec/api/main_api_spec.rb
|
312
303
|
- spec/api/jobs_api_spec.rb
|
313
304
|
- spec/api/executions_api_spec.rb
|
314
305
|
- spec/api_client_spec.rb
|
315
306
|
- spec/configuration_spec.rb
|
316
|
-
- spec/models/processor_syslog_spec.rb
|
317
307
|
- spec/models/executor_config_spec.rb
|
318
|
-
- spec/models/executor_shell_spec.rb
|
319
308
|
- spec/models/execution_spec.rb
|
320
|
-
- spec/models/serf_spec.rb
|
321
309
|
- spec/models/job_spec.rb
|
322
|
-
- spec/models/agent_spec.rb
|
323
|
-
- spec/models/processor_files_spec.rb
|
324
310
|
- spec/models/status_spec.rb
|
325
|
-
- spec/models/tags_spec.rb
|
326
|
-
- spec/models/inline_response_200_spec.rb
|
327
311
|
- spec/models/processors_spec.rb
|
328
|
-
- spec/models/processor_log_spec.rb
|
329
312
|
- spec/models/member_spec.rb
|
330
313
|
- spec/spec_helper.rb
|