dkron-rb 0.11.2 → 1.0.0
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 +5 -5
- data/Gemfile +0 -0
- data/README.md +8 -7
- data/Rakefile +0 -4
- data/dkron-rb.gemspec +10 -11
- data/docs/DefaultApi.md +0 -0
- data/docs/Execution.md +0 -0
- data/docs/ExecutionsApi.md +1 -1
- data/docs/ExecutorConfig.md +0 -0
- data/docs/Job.md +0 -0
- data/docs/JobsApi.md +60 -6
- data/docs/Member.md +0 -0
- data/docs/MembersApi.md +0 -0
- data/docs/Processors.md +0 -0
- data/docs/Status.md +3 -0
- data/git_push.sh +3 -3
- data/lib/dkron-rb.rb +2 -2
- data/lib/dkron-rb/api/default_api.rb +12 -21
- data/lib/dkron-rb/api/executions_api.rb +6 -9
- data/lib/dkron-rb/api/jobs_api.rb +73 -33
- data/lib/dkron-rb/api/members_api.rb +6 -9
- data/lib/dkron-rb/api_client.rb +10 -10
- data/lib/dkron-rb/api_error.rb +2 -2
- data/lib/dkron-rb/configuration.rb +3 -3
- data/lib/dkron-rb/models/execution.rb +7 -11
- data/lib/dkron-rb/models/executor_config.rb +7 -11
- data/lib/dkron-rb/models/job.rb +9 -13
- data/lib/dkron-rb/models/member.rb +7 -11
- data/lib/dkron-rb/models/processors.rb +7 -11
- data/lib/dkron-rb/models/status.rb +37 -11
- data/lib/dkron-rb/version.rb +3 -3
- data/spec/api/default_api_spec.rb +5 -8
- data/spec/api/executions_api_spec.rb +3 -4
- data/spec/api/jobs_api_spec.rb +19 -12
- data/spec/api/members_api_spec.rb +3 -4
- data/spec/api_client_spec.rb +36 -36
- data/spec/configuration_spec.rb +10 -10
- data/spec/models/execution_spec.rb +8 -9
- data/spec/models/executor_config_spec.rb +2 -3
- data/spec/models/job_spec.rb +20 -21
- data/spec/models/member_spec.rb +13 -14
- data/spec/models/processors_spec.rb +2 -3
- data/spec/models/status_spec.rb +20 -3
- data/spec/spec_helper.rb +2 -2
- metadata +18 -45
- data/Gemfile.lock +0 -67
- data/LICENSE +0 -201
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/config.json +0 -5
- data/docs/Agent.md +0 -7
- data/docs/ExecutorShell.md +0 -10
- data/docs/InlineResponse200.md +0 -10
- data/docs/MainApi.md +0 -90
- data/docs/ProcessorFiles.md +0 -9
- data/docs/ProcessorLog.md +0 -8
- data/docs/ProcessorSyslog.md +0 -8
- data/docs/Serf.md +0 -7
- data/docs/Tags.md +0 -7
- data/lib/dkron-rb/cron.rb +0 -152
- data/lib/dkron-rb/models/agent.rb +0 -152
- data/lib/dkron-rb/models/executor_shell.rb +0 -208
- data/lib/dkron-rb/models/inline_response_200.rb +0 -181
- data/lib/dkron-rb/models/processor_files.rb +0 -198
- data/lib/dkron-rb/models/processor_log.rb +0 -189
- data/lib/dkron-rb/models/processor_syslog.rb +0 -189
- data/lib/dkron-rb/models/serf.rb +0 -152
- data/lib/dkron-rb/models/tags.rb +0 -152
- data/lib/dkron-rb/numeric_seconds.rb +0 -48
- data/lib/dkron.rb +0 -9
- data/node_modules/isarray/build/build.js +0 -209
- data/node_modules/mime/build/build.js +0 -11
- data/node_modules/mime/build/test.js +0 -57
data/spec/models/job_spec.rb
CHANGED
@@ -3,10 +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:
|
6
|
+
OpenAPI spec version: 1
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.2
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -34,111 +34,110 @@ describe 'Job' do
|
|
34
34
|
end
|
35
35
|
describe 'test attribute "name"' do
|
36
36
|
it 'should work' do
|
37
|
-
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
describe 'test attribute "schedule"' do
|
42
42
|
it 'should work' do
|
43
|
-
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
47
|
describe 'test attribute "timezone"' do
|
48
48
|
it 'should work' do
|
49
|
-
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
53
|
describe 'test attribute "owner"' do
|
54
54
|
it 'should work' do
|
55
|
-
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
59
|
describe 'test attribute "owner_email"' do
|
60
60
|
it 'should work' do
|
61
|
-
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
65
|
describe 'test attribute "success_count"' do
|
66
66
|
it 'should work' do
|
67
|
-
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
71
|
describe 'test attribute "error_count"' do
|
72
72
|
it 'should work' do
|
73
|
-
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
77
|
describe 'test attribute "last_success"' do
|
78
78
|
it 'should work' do
|
79
|
-
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
83
|
describe 'test attribute "last_error"' do
|
84
84
|
it 'should work' do
|
85
|
-
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
89
|
describe 'test attribute "disabled"' do
|
90
90
|
it 'should work' do
|
91
|
-
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
95
|
describe 'test attribute "tags"' do
|
96
96
|
it 'should work' do
|
97
|
-
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
101
|
describe 'test attribute "retries"' do
|
102
102
|
it 'should work' do
|
103
|
-
|
103
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
104
104
|
end
|
105
105
|
end
|
106
106
|
|
107
107
|
describe 'test attribute "parent_job"' do
|
108
108
|
it 'should work' do
|
109
|
-
|
109
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
110
110
|
end
|
111
111
|
end
|
112
112
|
|
113
113
|
describe 'test attribute "dependent_jobs"' do
|
114
114
|
it 'should work' do
|
115
|
-
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
116
|
end
|
117
117
|
end
|
118
118
|
|
119
119
|
describe 'test attribute "processors"' do
|
120
120
|
it 'should work' do
|
121
|
-
|
121
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
122
122
|
end
|
123
123
|
end
|
124
124
|
|
125
125
|
describe 'test attribute "concurrency"' do
|
126
126
|
it 'should work' do
|
127
|
-
|
127
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
128
128
|
end
|
129
129
|
end
|
130
130
|
|
131
131
|
describe 'test attribute "executor"' do
|
132
132
|
it 'should work' do
|
133
|
-
|
133
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
134
134
|
end
|
135
135
|
end
|
136
136
|
|
137
137
|
describe 'test attribute "executor_config"' do
|
138
138
|
it 'should work' do
|
139
|
-
|
139
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
140
140
|
end
|
141
141
|
end
|
142
142
|
|
143
143
|
end
|
144
|
-
|
data/spec/models/member_spec.rb
CHANGED
@@ -3,10 +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:
|
6
|
+
OpenAPI spec version: 1
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.2
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -34,69 +34,68 @@ describe 'Member' do
|
|
34
34
|
end
|
35
35
|
describe 'test attribute "name"' do
|
36
36
|
it 'should work' do
|
37
|
-
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
describe 'test attribute "addr"' do
|
42
42
|
it 'should work' do
|
43
|
-
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
47
|
describe 'test attribute "port"' do
|
48
48
|
it 'should work' do
|
49
|
-
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
53
|
describe 'test attribute "tags"' do
|
54
54
|
it 'should work' do
|
55
|
-
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
59
|
describe 'test attribute "status"' do
|
60
60
|
it 'should work' do
|
61
|
-
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
65
|
describe 'test attribute "protocol_min"' do
|
66
66
|
it 'should work' do
|
67
|
-
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
71
|
describe 'test attribute "protocol_max"' do
|
72
72
|
it 'should work' do
|
73
|
-
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
77
|
describe 'test attribute "protocol_cur"' do
|
78
78
|
it 'should work' do
|
79
|
-
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
83
|
describe 'test attribute "delegate_min"' do
|
84
84
|
it 'should work' do
|
85
|
-
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
86
|
end
|
87
87
|
end
|
88
88
|
|
89
89
|
describe 'test attribute "delegate_max"' do
|
90
90
|
it 'should work' do
|
91
|
-
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
95
|
describe 'test attribute "delegate_cur"' do
|
96
96
|
it 'should work' do
|
97
|
-
|
97
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
98
98
|
end
|
99
99
|
end
|
100
100
|
|
101
101
|
end
|
102
|
-
|
@@ -3,10 +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:
|
6
|
+
OpenAPI spec version: 1
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.2
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -33,4 +33,3 @@ describe 'Processors' do
|
|
33
33
|
end
|
34
34
|
end
|
35
35
|
end
|
36
|
-
|
data/spec/models/status_spec.rb
CHANGED
@@ -3,10 +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:
|
6
|
+
OpenAPI spec version: 1
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.2
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -32,5 +32,22 @@ describe 'Status' do
|
|
32
32
|
expect(@instance).to be_instance_of(Dkron::Status)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
|
35
|
+
describe 'test attribute "agent"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "serf"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
36
46
|
|
47
|
+
describe 'test attribute "tags"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -3,10 +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:
|
6
|
+
OpenAPI spec version: 1
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.2
|
10
10
|
|
11
11
|
=end
|
12
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: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Victor Castell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-04-30 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: '1'
|
39
|
+
version: '2.1'
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version:
|
42
|
+
version: 2.1.0
|
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: '1'
|
49
|
+
version: '2.1'
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version:
|
52
|
+
version: 2.1.0
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: rspec
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
@@ -191,46 +191,32 @@ dependencies:
|
|
191
191
|
- !ruby/object:Gem::Version
|
192
192
|
version: 0.2.12
|
193
193
|
description: 'You can communicate with Dkron using a RESTful JSON API over HTTP. Dkron
|
194
|
-
nodes usually listen on port
|
195
|
-
assume that you
|
196
|
-
a RESTful JSON API over HTTP to communicate with software clients. Dkron
|
197
|
-
in port
|
198
|
-
the default port. Default API responses are unformatted JSON
|
199
|
-
param to format the response. '
|
194
|
+
nodes usually listen on port `8080` for API requests. All examples in
|
195
|
+
this section assume that you've found a running leader at `localhost:8080`. Dkron
|
196
|
+
implements a RESTful JSON API over HTTP to communicate with software clients. Dkron
|
197
|
+
listens in port `8080` by default. All examples in this section assume
|
198
|
+
that you're using the default port. Default API responses are unformatted JSON
|
199
|
+
add the `pretty=true` param to format the response. '
|
200
200
|
email:
|
201
|
-
-
|
201
|
+
- victor.castell@jobandtalent.com
|
202
202
|
executables: []
|
203
203
|
extensions: []
|
204
204
|
extra_rdoc_files: []
|
205
205
|
files:
|
206
206
|
- Gemfile
|
207
|
-
- Gemfile.lock
|
208
|
-
- LICENSE
|
209
207
|
- README.md
|
210
208
|
- Rakefile
|
211
|
-
- bin/console
|
212
|
-
- bin/setup
|
213
|
-
- config.json
|
214
209
|
- dkron-rb.gemspec
|
215
|
-
- docs/Agent.md
|
216
210
|
- docs/DefaultApi.md
|
217
211
|
- docs/Execution.md
|
218
212
|
- docs/ExecutionsApi.md
|
219
213
|
- docs/ExecutorConfig.md
|
220
|
-
- docs/ExecutorShell.md
|
221
|
-
- docs/InlineResponse200.md
|
222
214
|
- docs/Job.md
|
223
215
|
- docs/JobsApi.md
|
224
|
-
- docs/MainApi.md
|
225
216
|
- docs/Member.md
|
226
217
|
- docs/MembersApi.md
|
227
|
-
- docs/ProcessorFiles.md
|
228
|
-
- docs/ProcessorLog.md
|
229
|
-
- docs/ProcessorSyslog.md
|
230
218
|
- docs/Processors.md
|
231
|
-
- docs/Serf.md
|
232
219
|
- docs/Status.md
|
233
|
-
- docs/Tags.md
|
234
220
|
- git_push.sh
|
235
221
|
- lib/dkron-rb.rb
|
236
222
|
- lib/dkron-rb/api/default_api.rb
|
@@ -240,27 +226,13 @@ files:
|
|
240
226
|
- lib/dkron-rb/api_client.rb
|
241
227
|
- lib/dkron-rb/api_error.rb
|
242
228
|
- lib/dkron-rb/configuration.rb
|
243
|
-
- lib/dkron-rb/cron.rb
|
244
|
-
- lib/dkron-rb/models/agent.rb
|
245
229
|
- lib/dkron-rb/models/execution.rb
|
246
230
|
- lib/dkron-rb/models/executor_config.rb
|
247
|
-
- lib/dkron-rb/models/executor_shell.rb
|
248
|
-
- lib/dkron-rb/models/inline_response_200.rb
|
249
231
|
- lib/dkron-rb/models/job.rb
|
250
232
|
- lib/dkron-rb/models/member.rb
|
251
|
-
- lib/dkron-rb/models/processor_files.rb
|
252
|
-
- lib/dkron-rb/models/processor_log.rb
|
253
|
-
- lib/dkron-rb/models/processor_syslog.rb
|
254
233
|
- lib/dkron-rb/models/processors.rb
|
255
|
-
- lib/dkron-rb/models/serf.rb
|
256
234
|
- lib/dkron-rb/models/status.rb
|
257
|
-
- lib/dkron-rb/models/tags.rb
|
258
|
-
- lib/dkron-rb/numeric_seconds.rb
|
259
235
|
- lib/dkron-rb/version.rb
|
260
|
-
- lib/dkron.rb
|
261
|
-
- node_modules/isarray/build/build.js
|
262
|
-
- node_modules/mime/build/build.js
|
263
|
-
- node_modules/mime/build/test.js
|
264
236
|
- spec/api/default_api_spec.rb
|
265
237
|
- spec/api/executions_api_spec.rb
|
266
238
|
- spec/api/jobs_api_spec.rb
|
@@ -274,8 +246,9 @@ files:
|
|
274
246
|
- spec/models/processors_spec.rb
|
275
247
|
- spec/models/status_spec.rb
|
276
248
|
- spec/spec_helper.rb
|
277
|
-
homepage: https://
|
278
|
-
licenses:
|
249
|
+
homepage: https://dkron.io
|
250
|
+
licenses:
|
251
|
+
- Apache 2.0
|
279
252
|
metadata: {}
|
280
253
|
post_install_message:
|
281
254
|
rdoc_options: []
|
@@ -293,7 +266,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
293
266
|
version: '0'
|
294
267
|
requirements: []
|
295
268
|
rubyforge_project:
|
296
|
-
rubygems_version: 2.
|
269
|
+
rubygems_version: 2.7.6
|
297
270
|
signing_key:
|
298
271
|
specification_version: 4
|
299
272
|
summary: Dkron REST API Ruby Gem
|
data/Gemfile.lock
DELETED
@@ -1,67 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
dkron-rb (0.10.0)
|
5
|
-
json (~> 1.0)
|
6
|
-
typhoeus (~> 1.0, >= 1.0.1)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
ZenTest (4.11.0)
|
12
|
-
addressable (2.4.0)
|
13
|
-
autotest (4.4.6)
|
14
|
-
ZenTest (>= 4.4.1)
|
15
|
-
autotest-fsevent (0.2.13)
|
16
|
-
sys-uname
|
17
|
-
autotest-growl (0.2.16)
|
18
|
-
autotest-rails-pure (4.1.2)
|
19
|
-
crack (0.4.3)
|
20
|
-
safe_yaml (~> 1.0.0)
|
21
|
-
diff-lcs (1.3)
|
22
|
-
ethon (0.11.0)
|
23
|
-
ffi (>= 1.3.0)
|
24
|
-
ffi (1.9.23)
|
25
|
-
hashdiff (0.3.0)
|
26
|
-
json (1.8.6)
|
27
|
-
rake (12.0.0)
|
28
|
-
rspec (3.7.0)
|
29
|
-
rspec-core (~> 3.7.0)
|
30
|
-
rspec-expectations (~> 3.7.0)
|
31
|
-
rspec-mocks (~> 3.7.0)
|
32
|
-
rspec-core (3.7.1)
|
33
|
-
rspec-support (~> 3.7.0)
|
34
|
-
rspec-expectations (3.7.0)
|
35
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
36
|
-
rspec-support (~> 3.7.0)
|
37
|
-
rspec-mocks (3.7.0)
|
38
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
39
|
-
rspec-support (~> 3.7.0)
|
40
|
-
rspec-support (3.7.1)
|
41
|
-
safe_yaml (1.0.4)
|
42
|
-
sys-uname (1.0.3)
|
43
|
-
ffi (>= 1.0.0)
|
44
|
-
typhoeus (1.3.1)
|
45
|
-
ethon (>= 0.9.0)
|
46
|
-
vcr (3.0.3)
|
47
|
-
webmock (1.24.6)
|
48
|
-
addressable (>= 2.3.6)
|
49
|
-
crack (>= 0.3.2)
|
50
|
-
hashdiff
|
51
|
-
|
52
|
-
PLATFORMS
|
53
|
-
ruby
|
54
|
-
|
55
|
-
DEPENDENCIES
|
56
|
-
autotest (~> 4.4, >= 4.4.6)
|
57
|
-
autotest-fsevent (~> 0.2, >= 0.2.12)
|
58
|
-
autotest-growl (~> 0.2, >= 0.2.16)
|
59
|
-
autotest-rails-pure (~> 4.1, >= 4.1.2)
|
60
|
-
dkron-rb!
|
61
|
-
rake (~> 12.0.0)
|
62
|
-
rspec (~> 3.6, >= 3.6.0)
|
63
|
-
vcr (~> 3.0, >= 3.0.1)
|
64
|
-
webmock (~> 1.24, >= 1.24.3)
|
65
|
-
|
66
|
-
BUNDLED WITH
|
67
|
-
1.16.2
|