scatter_gather 0.1.0 → 0.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/lib/scatter_gather/version.rb +1 -1
- data/rbi/scatter_gather.rbi +1 -1
- data/scatter_gather.gemspec +3 -3
- metadata +5 -6
- data/lib/tasks/scatter_gather_tasks.rake +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1226dbbaeb58d454646982ccecd8bc3512efd45b5ae51a22031ea744b061768b
|
4
|
+
data.tar.gz: a75ecd0241e1556d8b060321b9e0d3a46f18c070c4d85efe9d80239a5c5f4eae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a44383f3f3d215668122e7a262059c891fff87f2892c30a5bf72630eaad2d2ab6008f2abacbb831c72bf9e66647ffbc9d340d988e056effc75b5f7826704e97
|
7
|
+
data.tar.gz: d60c239b73a6f988c195194bdb26d9c0e6458eff9c11e4c387cfd7607fe13f5461086c7f210acc32ec6b540d50bf8536197f3964e8e5002b534ac4c0328fa4cb
|
data/rbi/scatter_gather.rbi
CHANGED
@@ -32,7 +32,7 @@ module ScatterGather
|
|
32
32
|
max_attempts: 10,
|
33
33
|
poll_interval: 2.seconds
|
34
34
|
}.freeze, T.untyped)
|
35
|
-
VERSION = T.let("0.1.
|
35
|
+
VERSION = T.let("0.1.1", T.untyped)
|
36
36
|
|
37
37
|
# sord omit - no YARD return type given, using untyped
|
38
38
|
# Updates the completions table with the status of this job
|
data/scatter_gather.gemspec
CHANGED
@@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.email = ["me@julik.nl"]
|
10
10
|
spec.license = "MIT"
|
11
11
|
|
12
|
-
spec.summary = "
|
13
|
-
spec.description = "
|
14
|
-
spec.homepage = "https://
|
12
|
+
spec.summary = "Scatter-gather for ActiveJob"
|
13
|
+
spec.description = "Scatter-gather for ActiveJob allowing batching"
|
14
|
+
spec.homepage = "https://github.com/julik/scatter_gather"
|
15
15
|
spec.required_ruby_version = ">= 3.1.0"
|
16
16
|
|
17
17
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scatter_gather
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julik Tarkhanov
|
@@ -184,7 +184,7 @@ dependencies:
|
|
184
184
|
- - ">="
|
185
185
|
- !ruby/object:Gem::Version
|
186
186
|
version: '0'
|
187
|
-
description:
|
187
|
+
description: Scatter-gather for ActiveJob allowing batching
|
188
188
|
email:
|
189
189
|
- me@julik.nl
|
190
190
|
executables: []
|
@@ -206,7 +206,6 @@ files:
|
|
206
206
|
- lib/generators/scatter_gather_migration_001.rb.erb
|
207
207
|
- lib/scatter_gather.rb
|
208
208
|
- lib/scatter_gather/version.rb
|
209
|
-
- lib/tasks/scatter_gather_tasks.rake
|
210
209
|
- rbi/scatter_gather.rbi
|
211
210
|
- scatter_gather-0.1.19.gem
|
212
211
|
- scatter_gather.gemspec
|
@@ -255,12 +254,12 @@ files:
|
|
255
254
|
- test/dummy/public/icon.svg
|
256
255
|
- test/scatter_gather_test.rb
|
257
256
|
- test/test_helper.rb
|
258
|
-
homepage: https://
|
257
|
+
homepage: https://github.com/julik/scatter_gather
|
259
258
|
licenses:
|
260
259
|
- MIT
|
261
260
|
metadata:
|
262
261
|
allowed_push_host: https://rubygems.org
|
263
|
-
homepage_uri: https://
|
262
|
+
homepage_uri: https://github.com/julik/scatter_gather
|
264
263
|
source_code_uri: https://github.com/julik/scatter_gather
|
265
264
|
changelog_uri: https://github.com/julik/scatter_gather/blob/main/CHANGELOG.md
|
266
265
|
post_install_message:
|
@@ -281,5 +280,5 @@ requirements: []
|
|
281
280
|
rubygems_version: 3.4.10
|
282
281
|
signing_key:
|
283
282
|
specification_version: 4
|
284
|
-
summary:
|
283
|
+
summary: Scatter-gather for ActiveJob
|
285
284
|
test_files: []
|