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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 423f509998336fa071a30240b18544524dbb9ee711c1250e3daf597c10bd9993
4
- data.tar.gz: 14b5c6c4084f4c9c9dc440ab4c015e85f67695b6512ba1a23dc94e477bdaca6c
3
+ metadata.gz: 1226dbbaeb58d454646982ccecd8bc3512efd45b5ae51a22031ea744b061768b
4
+ data.tar.gz: a75ecd0241e1556d8b060321b9e0d3a46f18c070c4d85efe9d80239a5c5f4eae
5
5
  SHA512:
6
- metadata.gz: df506e118824334796d6f2da4464672740bbfc376a58a29e754f7224958bf369983ca253f7e38887bbcbdab1f1159616d31790bbdefe6f0ed4f216f8b7d522dd
7
- data.tar.gz: a47b8afba198ff4ab3428ed11fdbb4469f83ab45139e8f8dcf2f29261c0c144f54d38c26181eff9a74c6d694d72d01f6e505c744a1451a867543102a13cc838b
6
+ metadata.gz: 8a44383f3f3d215668122e7a262059c891fff87f2892c30a5bf72630eaad2d2ab6008f2abacbb831c72bf9e66647ffbc9d340d988e056effc75b5f7826704e97
7
+ data.tar.gz: d60c239b73a6f988c195194bdb26d9c0e6458eff9c11e4c387cfd7607fe13f5461086c7f210acc32ec6b540d50bf8536197f3964e8e5002b534ac4c0328fa4cb
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ScatterGather
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -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.0", T.untyped)
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
@@ -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 = "Effortless step workflows that embed nicely inside Rails"
13
- spec.description = "Step workflows for Rails/ActiveRecord"
14
- spec.homepage = "https://scattergather.dev"
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.0
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: Step workflows for Rails/ActiveRecord
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://scattergather.dev
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://scattergather.dev
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: Effortless step workflows that embed nicely inside Rails
283
+ summary: Scatter-gather for ActiveJob
285
284
  test_files: []
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- namespace :scatter_gather do
4
- desc "Recover all journeys hanging in the 'performing' state"
5
- task :recovery do
6
- ScatterGather::RecoverStuckJourneysJob.perform_now
7
- end
8
- end