allq_rest 1.5.1 → 1.5.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/allq_rest-1.5.1.gem +0 -0
- data/deploy.sh +1 -1
- data/lib/.DS_Store +0 -0
- data/lib/allq_rest/models/new_parent_job.rb +10 -0
- data/lib/allq_rest/version.rb +1 -1
- data/spec/.DS_Store +0 -0
- metadata +16 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c4c2a43c86e2f169beb3452d58629845a075cdc9c4ffb209b30baf477356b7ae
|
|
4
|
+
data.tar.gz: 1af223b69213787f90bf85e8e3709f368acaaf7ac2b37ead201eb44b75708068
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac14ec57b0baa30dd35309ae7d05ae7c192c58ac0aab34746fd637f36b72fbd67d37c4b788a7aab53d0325fc1d4eccecbdbe85ba6076f62a6bffc45ffd3ab0d4
|
|
7
|
+
data.tar.gz: a262753be958dbb48b21e05fe0295b3638e8e0705636dbbfa533b3d840af47faf49cd1a67607840b8654a3ffe8ea47156394641fc9df894e1738783a1fb6d8b6
|
data/allq_rest-1.5.1.gem
ADDED
|
Binary file
|
data/deploy.sh
CHANGED
data/lib/.DS_Store
CHANGED
|
Binary file
|
|
@@ -39,6 +39,9 @@ module Allq
|
|
|
39
39
|
# Execute job after timeout
|
|
40
40
|
attr_accessor :run_on_timeout
|
|
41
41
|
|
|
42
|
+
# Execute job after timeout
|
|
43
|
+
attr_accessor :shard_key
|
|
44
|
+
|
|
42
45
|
# Number of children
|
|
43
46
|
attr_accessor :limit
|
|
44
47
|
|
|
@@ -53,6 +56,7 @@ module Allq
|
|
|
53
56
|
:'parent_id' => :'parent_id',
|
|
54
57
|
:'timeout' => :'timeout',
|
|
55
58
|
:'run_on_timeout' => :'run_on_timeout',
|
|
59
|
+
:'shard_key' => :'shard_key',
|
|
56
60
|
:'limit' => :'limit'
|
|
57
61
|
}
|
|
58
62
|
end
|
|
@@ -68,6 +72,7 @@ module Allq
|
|
|
68
72
|
:'parent_id' => :'String',
|
|
69
73
|
:'timeout' => :'Integer',
|
|
70
74
|
:'run_on_timeout' => :'BOOLEAN',
|
|
75
|
+
:'shard_key' => :'shard_key',
|
|
71
76
|
:'limit' => :'Integer'
|
|
72
77
|
}
|
|
73
78
|
end
|
|
@@ -124,6 +129,10 @@ module Allq
|
|
|
124
129
|
self.run_on_timeout = false
|
|
125
130
|
end
|
|
126
131
|
|
|
132
|
+
if attributes.has_key?(:'shard_key')
|
|
133
|
+
self.shard_key = attributes[:'shard_key']
|
|
134
|
+
end
|
|
135
|
+
|
|
127
136
|
if attributes.has_key?(:'limit')
|
|
128
137
|
self.limit = attributes[:'limit']
|
|
129
138
|
end
|
|
@@ -180,6 +189,7 @@ module Allq
|
|
|
180
189
|
parent_id == o.parent_id &&
|
|
181
190
|
timeout == o.timeout &&
|
|
182
191
|
run_on_timeout == o.run_on_timeout &&
|
|
192
|
+
shard_key = o.shard_key &&
|
|
183
193
|
limit == o.limit
|
|
184
194
|
end
|
|
185
195
|
|
data/lib/allq_rest/version.rb
CHANGED
data/spec/.DS_Store
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: allq_rest
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.2
|
|
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: 2024-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -34,42 +34,42 @@ dependencies:
|
|
|
34
34
|
name: json
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- - ">="
|
|
38
|
-
- !ruby/object:Gem::Version
|
|
39
|
-
version: 2.1.0
|
|
40
37
|
- - "~>"
|
|
41
38
|
- !ruby/object:Gem::Version
|
|
42
39
|
version: '2.1'
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::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
|
-
- - ">="
|
|
48
|
-
- !ruby/object:Gem::Version
|
|
49
|
-
version: 2.1.0
|
|
50
47
|
- - "~>"
|
|
51
48
|
- !ruby/object:Gem::Version
|
|
52
49
|
version: '2.1'
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: 2.1.0
|
|
53
53
|
- !ruby/object:Gem::Dependency
|
|
54
54
|
name: rspec
|
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
|
56
56
|
requirements:
|
|
57
|
-
- - ">="
|
|
58
|
-
- !ruby/object:Gem::Version
|
|
59
|
-
version: 3.6.0
|
|
60
57
|
- - "~>"
|
|
61
58
|
- !ruby/object:Gem::Version
|
|
62
59
|
version: '3.6'
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 3.6.0
|
|
63
63
|
type: :development
|
|
64
64
|
prerelease: false
|
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
|
-
- - ">="
|
|
68
|
-
- !ruby/object:Gem::Version
|
|
69
|
-
version: 3.6.0
|
|
70
67
|
- - "~>"
|
|
71
68
|
- !ruby/object:Gem::Version
|
|
72
69
|
version: '3.6'
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: 3.6.0
|
|
73
73
|
description: Allq API Client
|
|
74
74
|
email:
|
|
75
75
|
- support@blitline.com
|
|
@@ -86,6 +86,7 @@ files:
|
|
|
86
86
|
- allq_rest-1.3.0.gem
|
|
87
87
|
- allq_rest-1.4.0.gem
|
|
88
88
|
- allq_rest-1.5.0.gem
|
|
89
|
+
- allq_rest-1.5.1.gem
|
|
89
90
|
- allq_rest.gemspec
|
|
90
91
|
- deploy.sh
|
|
91
92
|
- docs/ActionsApi.md
|
|
@@ -159,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
159
160
|
- !ruby/object:Gem::Version
|
|
160
161
|
version: '0'
|
|
161
162
|
requirements: []
|
|
162
|
-
rubygems_version: 3.
|
|
163
|
+
rubygems_version: 3.2.33
|
|
163
164
|
signing_key:
|
|
164
165
|
specification_version: 4
|
|
165
166
|
summary: Ruby REST client for Allq platform
|