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.
Files changed (73) hide show
  1. checksums.yaml +5 -5
  2. data/Gemfile +0 -0
  3. data/README.md +8 -7
  4. data/Rakefile +0 -4
  5. data/dkron-rb.gemspec +10 -11
  6. data/docs/DefaultApi.md +0 -0
  7. data/docs/Execution.md +0 -0
  8. data/docs/ExecutionsApi.md +1 -1
  9. data/docs/ExecutorConfig.md +0 -0
  10. data/docs/Job.md +0 -0
  11. data/docs/JobsApi.md +60 -6
  12. data/docs/Member.md +0 -0
  13. data/docs/MembersApi.md +0 -0
  14. data/docs/Processors.md +0 -0
  15. data/docs/Status.md +3 -0
  16. data/git_push.sh +3 -3
  17. data/lib/dkron-rb.rb +2 -2
  18. data/lib/dkron-rb/api/default_api.rb +12 -21
  19. data/lib/dkron-rb/api/executions_api.rb +6 -9
  20. data/lib/dkron-rb/api/jobs_api.rb +73 -33
  21. data/lib/dkron-rb/api/members_api.rb +6 -9
  22. data/lib/dkron-rb/api_client.rb +10 -10
  23. data/lib/dkron-rb/api_error.rb +2 -2
  24. data/lib/dkron-rb/configuration.rb +3 -3
  25. data/lib/dkron-rb/models/execution.rb +7 -11
  26. data/lib/dkron-rb/models/executor_config.rb +7 -11
  27. data/lib/dkron-rb/models/job.rb +9 -13
  28. data/lib/dkron-rb/models/member.rb +7 -11
  29. data/lib/dkron-rb/models/processors.rb +7 -11
  30. data/lib/dkron-rb/models/status.rb +37 -11
  31. data/lib/dkron-rb/version.rb +3 -3
  32. data/spec/api/default_api_spec.rb +5 -8
  33. data/spec/api/executions_api_spec.rb +3 -4
  34. data/spec/api/jobs_api_spec.rb +19 -12
  35. data/spec/api/members_api_spec.rb +3 -4
  36. data/spec/api_client_spec.rb +36 -36
  37. data/spec/configuration_spec.rb +10 -10
  38. data/spec/models/execution_spec.rb +8 -9
  39. data/spec/models/executor_config_spec.rb +2 -3
  40. data/spec/models/job_spec.rb +20 -21
  41. data/spec/models/member_spec.rb +13 -14
  42. data/spec/models/processors_spec.rb +2 -3
  43. data/spec/models/status_spec.rb +20 -3
  44. data/spec/spec_helper.rb +2 -2
  45. metadata +18 -45
  46. data/Gemfile.lock +0 -67
  47. data/LICENSE +0 -201
  48. data/bin/console +0 -14
  49. data/bin/setup +0 -8
  50. data/config.json +0 -5
  51. data/docs/Agent.md +0 -7
  52. data/docs/ExecutorShell.md +0 -10
  53. data/docs/InlineResponse200.md +0 -10
  54. data/docs/MainApi.md +0 -90
  55. data/docs/ProcessorFiles.md +0 -9
  56. data/docs/ProcessorLog.md +0 -8
  57. data/docs/ProcessorSyslog.md +0 -8
  58. data/docs/Serf.md +0 -7
  59. data/docs/Tags.md +0 -7
  60. data/lib/dkron-rb/cron.rb +0 -152
  61. data/lib/dkron-rb/models/agent.rb +0 -152
  62. data/lib/dkron-rb/models/executor_shell.rb +0 -208
  63. data/lib/dkron-rb/models/inline_response_200.rb +0 -181
  64. data/lib/dkron-rb/models/processor_files.rb +0 -198
  65. data/lib/dkron-rb/models/processor_log.rb +0 -189
  66. data/lib/dkron-rb/models/processor_syslog.rb +0 -189
  67. data/lib/dkron-rb/models/serf.rb +0 -152
  68. data/lib/dkron-rb/models/tags.rb +0 -152
  69. data/lib/dkron-rb/numeric_seconds.rb +0 -48
  70. data/lib/dkron.rb +0 -9
  71. data/node_modules/isarray/build/build.js +0 -209
  72. data/node_modules/mime/build/build.js +0 -11
  73. data/node_modules/mime/build/test.js +0 -57
@@ -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: 0.11.2
6
+ OpenAPI spec version: 1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
-
@@ -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: 0.11.2
6
+ OpenAPI spec version: 1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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: 0.11.2
6
+ OpenAPI spec version: 1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
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
-
@@ -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: 0.11.2
6
+ OpenAPI spec version: 1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
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
- end
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
@@ -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: 0.11.2
6
+ OpenAPI spec version: 1
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.3.1
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.11.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
- - Swagger-Codegen
7
+ - Victor Castell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-09 00:00:00.000000000 Z
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: '1.4'
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: '1.4'
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 `8080` for API requests. All examples in this section
195
- assume that you''ve found a running leader at `localhost:8080`. Dkron implements
196
- a RESTful JSON API over HTTP to communicate with software clients. Dkron listens
197
- in port `8080` by default. All examples in this section assume that you''re using
198
- the default port. Default API responses are unformatted JSON add the `pretty=true`
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://github.com/swagger-api/swagger-codegen
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.5.2.3
269
+ rubygems_version: 2.7.6
297
270
  signing_key:
298
271
  specification_version: 4
299
272
  summary: Dkron REST API Ruby Gem
@@ -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