queue-bus 0.13.3 → 0.13.4

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: bd2c3c4cf461b366bb64ad3581a0c51273cee8c21b44bcb2f21a56237d88441c
4
- data.tar.gz: 03f6bba824e6d5e0fb79315228bb624324886f635b2cdc60cd70684e9d36f9d6
3
+ metadata.gz: c9f2780a64fb58183307da089ce28323668aa50ad5186122d0780bac1757a938
4
+ data.tar.gz: 70383c0bd4aa2a407163d2b59fba48c88407663a403c34cafd883a20645270dd
5
5
  SHA512:
6
- metadata.gz: '05269bf6c20d7911cd873be360d0c7e970f0e2d8fb08a8815faf01f52a9f0ba2dff372aaa9417daeff99ce6351f3c2b2039754e8e0f7c13e9b43a38242c052fb'
7
- data.tar.gz: 30e65bd3dea0117673fb2a9df44286d00566632a93f84b9182996f671ffb74415f07970df93c819f6a83a13bad4f5ee5cf2d72e1dbc68ba6081ee6fab9bd661d
6
+ metadata.gz: 213245fa416d55313a4fba001fe50b6ea1d28da070e271536143da0014f7ad5ad99ac3a36875a831fa7d41dac74216459dbfbf20c2e25aa9642ab0b33ce803a3
7
+ data.tar.gz: 1803b1b83fa49f1216bd7dd7cf51db9f3434233f74d4f33d9bc75e43a34f8d3f9133ee9eface9205fc42a707c9ecf42cdbc266d1010bcb3ef34c366d00bdc506
data/CHANGELOG.md CHANGED
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.13.4]
10
+ - Removes sadd usage in favor of sadd?
11
+
9
12
  ## [0.13.3]
10
13
  - modifies `queuebus:unsubscribe` to decommission only the specified application when passed exactly one argument.
11
14
 
@@ -39,7 +39,7 @@ module QueueBus
39
39
  # Used internally to keep track of which queues we've created.
40
40
  # Don't call this directly.
41
41
  def watch_queue(queue)
42
- redis { |redis| redis.sadd(:queues, queue.to_s) }
42
+ redis { |redis| redis.sadd?(:queues, queue.to_s) }
43
43
  end
44
44
 
45
45
  # Used internally to stuff the item into the schedule sorted list.
@@ -54,7 +54,7 @@ module QueueBus
54
54
 
55
55
  # make it the real one
56
56
  redis.rename(temp_key, redis_key)
57
- redis.sadd(self.class.app_list_key, app_key)
57
+ redis.sadd?(self.class.app_list_key, app_key)
58
58
 
59
59
  redis.hgetall(redis_key).inspect if log
60
60
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module QueueBus
4
- VERSION = '0.13.3'
4
+ VERSION = '0.13.4'
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: queue-bus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.3
4
+ version: 0.13.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Leonard
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-07-26 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: multi_json
@@ -159,7 +158,6 @@ files:
159
158
  homepage: ''
160
159
  licenses: []
161
160
  metadata: {}
162
- post_install_message:
163
161
  rdoc_options: []
164
162
  require_paths:
165
163
  - lib
@@ -174,8 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
172
  - !ruby/object:Gem::Version
175
173
  version: '0'
176
174
  requirements: []
177
- rubygems_version: 3.2.33
178
- signing_key:
175
+ rubygems_version: 3.6.9
179
176
  specification_version: 4
180
177
  summary: A simple event bus on top of background queues
181
178
  test_files: