tiny_bus 3.4.0 → 3.4.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/lib/tiny_bus.rb +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed8817e45ae848d457fe774c07270b7cf3f4bd5a000224925c3083f21d3ff35f
|
4
|
+
data.tar.gz: 252785fea90871f09d2a875fecb06eb062d3993be7f08d5a4729f17af4ae19e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd9692802125bf10e345531ca7fa3ccff91eb2c9bfc21210db18d736f382247e9b4cfb0babbbf8c08514ec7df209aa8a3f83fe5466049fc6dac90abb65b82a35
|
7
|
+
data.tar.gz: 2b35f6675e5331a3812b676deac96a0be3a4d788824551b91e621f08499b1e28759d0747d53897d0dd56f04db9d76216c4bfb1882339c0bbd36a3fba1cad8127
|
data/lib/tiny_bus.rb
CHANGED
@@ -83,19 +83,19 @@ class TinyBus
|
|
83
83
|
@subs[topic] << subber
|
84
84
|
@stats[topic] ||= 0
|
85
85
|
|
86
|
-
msg({ @topic_key => 'sub', 'to_topic' => topic, 'subber' => subber.to_s })
|
86
|
+
msg({ @topic_key => 'sub', 'to_topic' => topic, 'subber' => subber.to_s }, 'TINYBUS-SUB')
|
87
87
|
end
|
88
88
|
|
89
89
|
# removes a subscriber from a topic
|
90
90
|
def unsub(topic, subber)
|
91
91
|
@subs[topic]&.delete(subber)
|
92
92
|
|
93
|
-
msg({ @topic_key => 'unsub', 'from_topic' => topic, 'subber' => subber.to_s })
|
93
|
+
msg({ @topic_key => 'unsub', 'from_topic' => topic, 'subber' => subber.to_s }, 'TINYBUS-UNSUB')
|
94
94
|
end
|
95
95
|
|
96
96
|
# takes an incoming message and distributes it to subscribers
|
97
97
|
#
|
98
|
-
# msg: the incoming message to be distributed
|
98
|
+
# msg: the incoming message to be distributed, must be a Ruby Hash
|
99
99
|
# lvl (optional): the logging level
|
100
100
|
# default: 'info'
|
101
101
|
#
|
@@ -105,7 +105,7 @@ class TinyBus
|
|
105
105
|
# NOTE: keys that begin with dot (.), such as '.time' are reserved for
|
106
106
|
# TinyBus and show not be altered by outside code, otherwise undefined
|
107
107
|
# behavior may result.
|
108
|
-
def msg(msg, lvl
|
108
|
+
def msg(msg, lvl=:info)
|
109
109
|
msg = @annotator.pipe(msg)
|
110
110
|
msg = @translator&.pipe(msg) || msg
|
111
111
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tiny_bus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeff Lunt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tiny_log
|