allq_client 1.0.0 → 1.1.1
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 +0 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/allq_client-1.1.0.gem +0 -0
- data/allq_client.gemspec +0 -0
- data/deploy.sh +3 -0
- data/docs/ActionsApi.md +0 -0
- data/docs/AdminApi.md +0 -0
- data/docs/BasicPayload.md +0 -0
- data/docs/BasicResponse.md +0 -0
- data/docs/JobRef.md +0 -0
- data/docs/JobResponse.md +0 -0
- data/docs/NewJob.md +0 -0
- data/docs/NewParentJob.md +0 -0
- data/docs/StatsInfo.md +0 -0
- data/docs/StatsResults.md +0 -0
- data/docs/StatsTube.md +0 -0
- data/docs/Throttle.md +0 -0
- data/docs/TubeRef.md +0 -0
- data/lib/.DS_Store +0 -0
- data/lib/allq_client.rb +2 -1
- data/lib/allq_client/.DS_Store +0 -0
- data/lib/allq_client/api/actions_api.rb +96 -45
- data/lib/allq_client/api/admin_api.rb +62 -9
- data/lib/allq_client/api_client.rb +9 -9
- data/lib/allq_client/api_error.rb +1 -1
- data/lib/allq_client/configuration.rb +2 -2
- data/lib/allq_client/models/basic_payload.rb +7 -12
- data/lib/allq_client/models/basic_response.rb +7 -12
- data/lib/allq_client/models/job_ref.rb +7 -11
- data/lib/allq_client/models/job_response.rb +10 -14
- data/lib/allq_client/models/multiple_job_response.rb +187 -0
- data/lib/allq_client/models/new_job.rb +14 -18
- data/lib/allq_client/models/new_parent_job.rb +14 -18
- data/lib/allq_client/models/stats_info.rb +8 -12
- data/lib/allq_client/models/stats_results.rb +9 -13
- data/lib/allq_client/models/stats_tube.rb +12 -16
- data/lib/allq_client/models/throttle.rb +9 -13
- data/lib/allq_client/models/tube_ref.rb +7 -11
- data/lib/allq_client/version.rb +2 -2
- data/spec/api/actions_api_spec.rb +414 -12
- data/spec/api/admin_api_spec.rb +0 -0
- data/spec/api_client_spec.rb +0 -0
- data/spec/configuration_spec.rb +0 -0
- data/spec/models/basic_payload_spec.rb +0 -0
- data/spec/models/basic_response_spec.rb +0 -0
- data/spec/models/job_ref_spec.rb +0 -0
- data/spec/models/job_response_spec.rb +0 -0
- data/spec/models/new_job_spec.rb +0 -0
- data/spec/models/new_parent_job_spec.rb +0 -0
- data/spec/models/stats_info_spec.rb +0 -0
- data/spec/models/stats_results_spec.rb +0 -0
- data/spec/models/stats_tube_spec.rb +0 -0
- data/spec/models/throttle_spec.rb +0 -0
- data/spec/models/tube_ref_spec.rb +0 -0
- data/spec/spec_helper.rb +0 -0
- metadata +7 -2
data/spec/api/admin_api_spec.rb
CHANGED
File without changes
|
data/spec/api_client_spec.rb
CHANGED
File without changes
|
data/spec/configuration_spec.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
data/spec/models/job_ref_spec.rb
CHANGED
File without changes
|
File without changes
|
data/spec/models/new_job_spec.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: allq_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- support@blitline.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -201,7 +201,9 @@ files:
|
|
201
201
|
- Gemfile.lock
|
202
202
|
- README.md
|
203
203
|
- Rakefile
|
204
|
+
- allq_client-1.1.0.gem
|
204
205
|
- allq_client.gemspec
|
206
|
+
- deploy.sh
|
205
207
|
- docs/ActionsApi.md
|
206
208
|
- docs/AdminApi.md
|
207
209
|
- docs/BasicPayload.md
|
@@ -216,7 +218,9 @@ files:
|
|
216
218
|
- docs/Throttle.md
|
217
219
|
- docs/TubeRef.md
|
218
220
|
- git_push.sh
|
221
|
+
- lib/.DS_Store
|
219
222
|
- lib/allq_client.rb
|
223
|
+
- lib/allq_client/.DS_Store
|
220
224
|
- lib/allq_client/api/actions_api.rb
|
221
225
|
- lib/allq_client/api/admin_api.rb
|
222
226
|
- lib/allq_client/api_client.rb
|
@@ -226,6 +230,7 @@ files:
|
|
226
230
|
- lib/allq_client/models/basic_response.rb
|
227
231
|
- lib/allq_client/models/job_ref.rb
|
228
232
|
- lib/allq_client/models/job_response.rb
|
233
|
+
- lib/allq_client/models/multiple_job_response.rb
|
229
234
|
- lib/allq_client/models/new_job.rb
|
230
235
|
- lib/allq_client/models/new_parent_job.rb
|
231
236
|
- lib/allq_client/models/stats_info.rb
|