rabbit_messaging 0.12.1 → 0.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +1 -6
- data/.rubocop.yml +4 -0
- data/Gemfile +10 -1
- data/Gemfile.lock +154 -159
- data/lib/rabbit/receiving/handler_resolver.rb +2 -2
- data/lib/rabbit/receiving/worker.rb +2 -0
- data/lib/rabbit/version.rb +1 -1
- data/rabbit_messaging.gemspec +0 -10
- metadata +3 -129
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54edf1eb0f95086a958e8218b583661bb39b970480f7ffbcca93f53da5c20d3b
|
4
|
+
data.tar.gz: f5330e45e0c48193ae929e814ddaa19c0d3be7de4def288411d620ece56ead28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6fb98cfec10c2d185a0b11865b864e079b39de06d4bb87968d994ac9927e74820551d0ac263848560c3cd6db76f6a8b049e1d2cb895f70136bddae686ab280b
|
7
|
+
data.tar.gz: 6339eddf4545a7fca7f96b0b887d9507a274f1806a2ecab0e298aac5fa59015e0106ac88babcdd92821542c61a811b85aae408d774b6b26e9a528cdac6871af9
|
data/.github/workflows/test.yml
CHANGED
@@ -27,7 +27,6 @@ jobs:
|
|
27
27
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
28
28
|
specs:
|
29
29
|
runs-on: ubuntu-latest
|
30
|
-
continue-on-error: ${{ matrix.experimental }}
|
31
30
|
|
32
31
|
# We want to run on external PRs, but not on our own internal PRs as they'll be run on push event
|
33
32
|
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != 'umbrellio/rabbit_messaging'
|
@@ -35,11 +34,7 @@ jobs:
|
|
35
34
|
strategy:
|
36
35
|
fail-fast: false
|
37
36
|
matrix:
|
38
|
-
ruby: ["2.
|
39
|
-
experimental: [false]
|
40
|
-
include:
|
41
|
-
- ruby: head
|
42
|
-
experimental: true
|
37
|
+
ruby: ["2.7", "3.0", "3.1", "3.2"]
|
43
38
|
|
44
39
|
steps:
|
45
40
|
- uses: actions/checkout@v2
|
data/.rubocop.yml
CHANGED
@@ -4,6 +4,7 @@ inherit_gem:
|
|
4
4
|
AllCops:
|
5
5
|
DisplayCopNames: true
|
6
6
|
TargetRubyVersion: 2.5
|
7
|
+
SuggestExtensions: false
|
7
8
|
Include:
|
8
9
|
- lib/**/*.rb
|
9
10
|
- spec/**/*.rb
|
@@ -19,3 +20,6 @@ Style/Alias:
|
|
19
20
|
Style/HashConversion:
|
20
21
|
Exclude:
|
21
22
|
- spec/**/*
|
23
|
+
|
24
|
+
RSpec/VerifiedDoubleReference:
|
25
|
+
EnforcedStyle: string
|
data/Gemfile
CHANGED
@@ -3,5 +3,14 @@
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
gemspec
|
5
5
|
|
6
|
-
gem "
|
6
|
+
gem "bundler"
|
7
|
+
gem "bundler-audit"
|
8
|
+
gem "pry"
|
9
|
+
gem "rails"
|
10
|
+
gem "rake"
|
11
|
+
gem "rspec"
|
12
|
+
gem "rspec-its"
|
13
|
+
gem "rubocop-config-umbrellio"
|
7
14
|
gem "sentry-ruby-core"
|
15
|
+
gem "simplecov"
|
16
|
+
gem "simplecov-lcov"
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rabbit_messaging (0.
|
4
|
+
rabbit_messaging (0.13.0)
|
5
5
|
bunny (~> 2.0)
|
6
6
|
lamian
|
7
7
|
rails (>= 5.2)
|
@@ -11,225 +11,226 @@ PATH
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
actioncable (
|
15
|
-
actionpack (=
|
16
|
-
activesupport (=
|
14
|
+
actioncable (7.0.4.2)
|
15
|
+
actionpack (= 7.0.4.2)
|
16
|
+
activesupport (= 7.0.4.2)
|
17
17
|
nio4r (~> 2.0)
|
18
18
|
websocket-driver (>= 0.6.1)
|
19
|
-
actionmailbox (
|
20
|
-
actionpack (=
|
21
|
-
activejob (=
|
22
|
-
activerecord (=
|
23
|
-
activestorage (=
|
24
|
-
activesupport (=
|
19
|
+
actionmailbox (7.0.4.2)
|
20
|
+
actionpack (= 7.0.4.2)
|
21
|
+
activejob (= 7.0.4.2)
|
22
|
+
activerecord (= 7.0.4.2)
|
23
|
+
activestorage (= 7.0.4.2)
|
24
|
+
activesupport (= 7.0.4.2)
|
25
25
|
mail (>= 2.7.1)
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
26
|
+
net-imap
|
27
|
+
net-pop
|
28
|
+
net-smtp
|
29
|
+
actionmailer (7.0.4.2)
|
30
|
+
actionpack (= 7.0.4.2)
|
31
|
+
actionview (= 7.0.4.2)
|
32
|
+
activejob (= 7.0.4.2)
|
33
|
+
activesupport (= 7.0.4.2)
|
31
34
|
mail (~> 2.5, >= 2.5.4)
|
35
|
+
net-imap
|
36
|
+
net-pop
|
37
|
+
net-smtp
|
32
38
|
rails-dom-testing (~> 2.0)
|
33
|
-
actionpack (
|
34
|
-
actionview (=
|
35
|
-
activesupport (=
|
36
|
-
rack (~> 2.0, >= 2.0
|
39
|
+
actionpack (7.0.4.2)
|
40
|
+
actionview (= 7.0.4.2)
|
41
|
+
activesupport (= 7.0.4.2)
|
42
|
+
rack (~> 2.0, >= 2.2.0)
|
37
43
|
rack-test (>= 0.6.3)
|
38
44
|
rails-dom-testing (~> 2.0)
|
39
45
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
40
|
-
actiontext (
|
41
|
-
actionpack (=
|
42
|
-
activerecord (=
|
43
|
-
activestorage (=
|
44
|
-
activesupport (=
|
46
|
+
actiontext (7.0.4.2)
|
47
|
+
actionpack (= 7.0.4.2)
|
48
|
+
activerecord (= 7.0.4.2)
|
49
|
+
activestorage (= 7.0.4.2)
|
50
|
+
activesupport (= 7.0.4.2)
|
51
|
+
globalid (>= 0.6.0)
|
45
52
|
nokogiri (>= 1.8.5)
|
46
|
-
actionview (
|
47
|
-
activesupport (=
|
53
|
+
actionview (7.0.4.2)
|
54
|
+
activesupport (= 7.0.4.2)
|
48
55
|
builder (~> 3.1)
|
49
56
|
erubi (~> 1.4)
|
50
57
|
rails-dom-testing (~> 2.0)
|
51
58
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
52
|
-
activejob (
|
53
|
-
activesupport (=
|
59
|
+
activejob (7.0.4.2)
|
60
|
+
activesupport (= 7.0.4.2)
|
54
61
|
globalid (>= 0.3.6)
|
55
|
-
activemodel (
|
56
|
-
activesupport (=
|
57
|
-
activerecord (
|
58
|
-
activemodel (=
|
59
|
-
activesupport (=
|
60
|
-
activestorage (
|
61
|
-
actionpack (=
|
62
|
-
activejob (=
|
63
|
-
activerecord (=
|
64
|
-
activesupport (=
|
65
|
-
marcel (~> 1.0
|
62
|
+
activemodel (7.0.4.2)
|
63
|
+
activesupport (= 7.0.4.2)
|
64
|
+
activerecord (7.0.4.2)
|
65
|
+
activemodel (= 7.0.4.2)
|
66
|
+
activesupport (= 7.0.4.2)
|
67
|
+
activestorage (7.0.4.2)
|
68
|
+
actionpack (= 7.0.4.2)
|
69
|
+
activejob (= 7.0.4.2)
|
70
|
+
activerecord (= 7.0.4.2)
|
71
|
+
activesupport (= 7.0.4.2)
|
72
|
+
marcel (~> 1.0)
|
66
73
|
mini_mime (>= 1.1.0)
|
67
|
-
activesupport (
|
74
|
+
activesupport (7.0.4.2)
|
68
75
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
69
76
|
i18n (>= 1.6, < 2)
|
70
77
|
minitest (>= 5.1)
|
71
78
|
tzinfo (~> 2.0)
|
72
|
-
zeitwerk (~> 2.3)
|
73
79
|
amq-protocol (2.3.2)
|
74
80
|
ast (2.4.2)
|
75
81
|
builder (3.2.4)
|
76
|
-
bundler-audit (0.9.
|
82
|
+
bundler-audit (0.9.1)
|
77
83
|
bundler (>= 1.2.0, < 3)
|
78
84
|
thor (~> 1.0)
|
79
|
-
bunny (2.
|
85
|
+
bunny (2.20.3)
|
80
86
|
amq-protocol (~> 2.3, >= 2.3.1)
|
81
87
|
sorted_set (~> 1, >= 1.0.2)
|
82
88
|
coderay (1.1.3)
|
83
|
-
concurrent-ruby (1.
|
89
|
+
concurrent-ruby (1.2.0)
|
84
90
|
crass (1.0.6)
|
85
|
-
|
91
|
+
date (3.3.3)
|
92
|
+
diff-lcs (1.5.0)
|
86
93
|
docile (1.4.0)
|
87
|
-
erubi (1.
|
88
|
-
|
89
|
-
faraday-em_http (~> 1.0)
|
90
|
-
faraday-em_synchrony (~> 1.0)
|
91
|
-
faraday-excon (~> 1.1)
|
92
|
-
faraday-httpclient (~> 1.0.1)
|
93
|
-
faraday-net_http (~> 1.0)
|
94
|
-
faraday-net_http_persistent (~> 1.1)
|
95
|
-
faraday-patron (~> 1.0)
|
96
|
-
faraday-rack (~> 1.0)
|
97
|
-
multipart-post (>= 1.2, < 3)
|
98
|
-
ruby2_keywords (>= 0.0.4)
|
99
|
-
faraday-em_http (1.0.0)
|
100
|
-
faraday-em_synchrony (1.0.0)
|
101
|
-
faraday-excon (1.1.0)
|
102
|
-
faraday-httpclient (1.0.1)
|
103
|
-
faraday-net_http (1.0.1)
|
104
|
-
faraday-net_http_persistent (1.2.0)
|
105
|
-
faraday-patron (1.0.0)
|
106
|
-
faraday-rack (1.0.0)
|
107
|
-
globalid (1.0.0)
|
94
|
+
erubi (1.12.0)
|
95
|
+
globalid (1.1.0)
|
108
96
|
activesupport (>= 5.0)
|
109
|
-
i18n (1.
|
97
|
+
i18n (1.12.0)
|
110
98
|
concurrent-ruby (~> 1.0)
|
111
|
-
|
99
|
+
json (2.6.3)
|
100
|
+
lamian (1.7.0)
|
112
101
|
rails (>= 4.2)
|
113
|
-
loofah (2.
|
102
|
+
loofah (2.19.1)
|
114
103
|
crass (~> 1.0.2)
|
115
104
|
nokogiri (>= 1.5.9)
|
116
|
-
mail (2.
|
105
|
+
mail (2.8.1)
|
117
106
|
mini_mime (>= 0.1.1)
|
107
|
+
net-imap
|
108
|
+
net-pop
|
109
|
+
net-smtp
|
118
110
|
marcel (1.0.2)
|
119
111
|
method_source (1.0.0)
|
120
112
|
mini_mime (1.1.2)
|
121
|
-
mini_portile2 (2.
|
122
|
-
minitest (5.
|
123
|
-
|
113
|
+
mini_portile2 (2.8.1)
|
114
|
+
minitest (5.17.0)
|
115
|
+
net-imap (0.3.4)
|
116
|
+
date
|
117
|
+
net-protocol
|
118
|
+
net-pop (0.1.2)
|
119
|
+
net-protocol
|
120
|
+
net-protocol (0.2.1)
|
121
|
+
timeout
|
122
|
+
net-smtp (0.3.3)
|
123
|
+
net-protocol
|
124
124
|
nio4r (2.5.8)
|
125
|
-
nokogiri (1.
|
126
|
-
mini_portile2 (~> 2.
|
125
|
+
nokogiri (1.14.2)
|
126
|
+
mini_portile2 (~> 2.8.0)
|
127
127
|
racc (~> 1.4)
|
128
|
-
parallel (1.
|
129
|
-
parser (3.
|
128
|
+
parallel (1.22.1)
|
129
|
+
parser (3.2.1.0)
|
130
130
|
ast (~> 2.4.1)
|
131
|
-
pry (0.14.
|
131
|
+
pry (0.14.2)
|
132
132
|
coderay (~> 1.1)
|
133
133
|
method_source (~> 1.0)
|
134
|
-
racc (1.6.
|
135
|
-
rack (2.2.
|
136
|
-
rack-test (
|
137
|
-
rack (>= 1.
|
138
|
-
rails (
|
139
|
-
actioncable (=
|
140
|
-
actionmailbox (=
|
141
|
-
actionmailer (=
|
142
|
-
actionpack (=
|
143
|
-
actiontext (=
|
144
|
-
actionview (=
|
145
|
-
activejob (=
|
146
|
-
activemodel (=
|
147
|
-
activerecord (=
|
148
|
-
activestorage (=
|
149
|
-
activesupport (=
|
134
|
+
racc (1.6.2)
|
135
|
+
rack (2.2.6.2)
|
136
|
+
rack-test (2.0.2)
|
137
|
+
rack (>= 1.3)
|
138
|
+
rails (7.0.4.2)
|
139
|
+
actioncable (= 7.0.4.2)
|
140
|
+
actionmailbox (= 7.0.4.2)
|
141
|
+
actionmailer (= 7.0.4.2)
|
142
|
+
actionpack (= 7.0.4.2)
|
143
|
+
actiontext (= 7.0.4.2)
|
144
|
+
actionview (= 7.0.4.2)
|
145
|
+
activejob (= 7.0.4.2)
|
146
|
+
activemodel (= 7.0.4.2)
|
147
|
+
activerecord (= 7.0.4.2)
|
148
|
+
activestorage (= 7.0.4.2)
|
149
|
+
activesupport (= 7.0.4.2)
|
150
150
|
bundler (>= 1.15.0)
|
151
|
-
railties (=
|
152
|
-
sprockets-rails (>= 2.0.0)
|
151
|
+
railties (= 7.0.4.2)
|
153
152
|
rails-dom-testing (2.0.3)
|
154
153
|
activesupport (>= 4.2.0)
|
155
154
|
nokogiri (>= 1.6)
|
156
|
-
rails-html-sanitizer (1.
|
157
|
-
loofah (~> 2.
|
158
|
-
railties (
|
159
|
-
actionpack (=
|
160
|
-
activesupport (=
|
155
|
+
rails-html-sanitizer (1.5.0)
|
156
|
+
loofah (~> 2.19, >= 2.19.1)
|
157
|
+
railties (7.0.4.2)
|
158
|
+
actionpack (= 7.0.4.2)
|
159
|
+
activesupport (= 7.0.4.2)
|
161
160
|
method_source
|
162
|
-
rake (>=
|
161
|
+
rake (>= 12.2)
|
163
162
|
thor (~> 1.0)
|
164
|
-
|
163
|
+
zeitwerk (~> 2.5)
|
164
|
+
rainbow (3.1.1)
|
165
165
|
rake (13.0.6)
|
166
|
-
rbtree (0.4.
|
167
|
-
regexp_parser (2.
|
166
|
+
rbtree (0.4.6)
|
167
|
+
regexp_parser (2.7.0)
|
168
168
|
rexml (3.2.5)
|
169
|
-
rspec (3.
|
170
|
-
rspec-core (~> 3.
|
171
|
-
rspec-expectations (~> 3.
|
172
|
-
rspec-mocks (~> 3.
|
173
|
-
rspec-core (3.
|
174
|
-
rspec-support (~> 3.
|
175
|
-
rspec-expectations (3.
|
169
|
+
rspec (3.12.0)
|
170
|
+
rspec-core (~> 3.12.0)
|
171
|
+
rspec-expectations (~> 3.12.0)
|
172
|
+
rspec-mocks (~> 3.12.0)
|
173
|
+
rspec-core (3.12.1)
|
174
|
+
rspec-support (~> 3.12.0)
|
175
|
+
rspec-expectations (3.12.2)
|
176
176
|
diff-lcs (>= 1.2.0, < 2.0)
|
177
|
-
rspec-support (~> 3.
|
177
|
+
rspec-support (~> 3.12.0)
|
178
178
|
rspec-its (1.3.0)
|
179
179
|
rspec-core (>= 3.0.0)
|
180
180
|
rspec-expectations (>= 3.0.0)
|
181
|
-
rspec-mocks (3.
|
181
|
+
rspec-mocks (3.12.3)
|
182
182
|
diff-lcs (>= 1.2.0, < 2.0)
|
183
|
-
rspec-support (~> 3.
|
184
|
-
rspec-support (3.
|
185
|
-
rubocop (1.
|
183
|
+
rspec-support (~> 3.12.0)
|
184
|
+
rspec-support (3.12.0)
|
185
|
+
rubocop (1.43.0)
|
186
|
+
json (~> 2.3)
|
186
187
|
parallel (~> 1.10)
|
187
|
-
parser (>= 3.
|
188
|
+
parser (>= 3.2.0.0)
|
188
189
|
rainbow (>= 2.2.2, < 4.0)
|
189
190
|
regexp_parser (>= 1.8, < 3.0)
|
190
|
-
rexml
|
191
|
-
rubocop-ast (>= 1.
|
191
|
+
rexml (>= 3.2.5, < 4.0)
|
192
|
+
rubocop-ast (>= 1.24.1, < 2.0)
|
192
193
|
ruby-progressbar (~> 1.7)
|
193
|
-
unicode-display_width (>=
|
194
|
-
rubocop-ast (1.
|
195
|
-
parser (>= 3.
|
196
|
-
rubocop-config-umbrellio (1.
|
197
|
-
rubocop (
|
198
|
-
rubocop-performance (
|
199
|
-
rubocop-rails (
|
200
|
-
rubocop-rake (
|
201
|
-
rubocop-rspec (
|
202
|
-
rubocop-sequel (
|
203
|
-
rubocop-performance (1.
|
204
|
-
rubocop (>=
|
194
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
195
|
+
rubocop-ast (1.26.0)
|
196
|
+
parser (>= 3.2.1.0)
|
197
|
+
rubocop-config-umbrellio (1.43.0.81)
|
198
|
+
rubocop (~> 1.43.0)
|
199
|
+
rubocop-performance (~> 1.15.0)
|
200
|
+
rubocop-rails (~> 2.17.0)
|
201
|
+
rubocop-rake (~> 0.6.0)
|
202
|
+
rubocop-rspec (~> 2.16.0)
|
203
|
+
rubocop-sequel (~> 0.3.3)
|
204
|
+
rubocop-performance (1.15.2)
|
205
|
+
rubocop (>= 1.7.0, < 2.0)
|
205
206
|
rubocop-ast (>= 0.4.0)
|
206
|
-
rubocop-rails (2.
|
207
|
+
rubocop-rails (2.17.4)
|
207
208
|
activesupport (>= 4.2.0)
|
208
209
|
rack (>= 1.1)
|
209
|
-
rubocop (>=
|
210
|
-
rubocop-rake (0.
|
211
|
-
rubocop
|
212
|
-
rubocop-rspec (2.2.0)
|
210
|
+
rubocop (>= 1.33.0, < 2.0)
|
211
|
+
rubocop-rake (0.6.0)
|
213
212
|
rubocop (~> 1.0)
|
214
|
-
|
215
|
-
|
213
|
+
rubocop-rspec (2.16.0)
|
214
|
+
rubocop (~> 1.33)
|
215
|
+
rubocop-sequel (0.3.4)
|
216
216
|
rubocop (~> 1.0)
|
217
217
|
ruby-progressbar (1.11.0)
|
218
|
-
|
219
|
-
|
218
|
+
sentry-ruby (5.8.0)
|
219
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
220
|
+
sentry-ruby-core (5.8.0)
|
220
221
|
concurrent-ruby
|
221
|
-
|
222
|
+
sentry-ruby (= 5.8.0)
|
222
223
|
serverengine (2.0.7)
|
223
224
|
sigdump (~> 0.2.2)
|
224
|
-
set (1.0.
|
225
|
+
set (1.0.3)
|
225
226
|
sigdump (0.2.4)
|
226
|
-
simplecov (0.
|
227
|
+
simplecov (0.22.0)
|
227
228
|
docile (~> 1.1)
|
228
229
|
simplecov-html (~> 0.11)
|
229
230
|
simplecov_json_formatter (~> 0.1)
|
230
231
|
simplecov-html (0.12.3)
|
231
232
|
simplecov-lcov (0.8.0)
|
232
|
-
simplecov_json_formatter (0.1.
|
233
|
+
simplecov_json_formatter (0.1.4)
|
233
234
|
sneakers (2.11.0)
|
234
235
|
bunny (~> 2.12)
|
235
236
|
concurrent-ruby (~> 1.0)
|
@@ -239,23 +240,17 @@ GEM
|
|
239
240
|
sorted_set (1.0.3)
|
240
241
|
rbtree
|
241
242
|
set (~> 1.0)
|
242
|
-
sprockets (4.0.2)
|
243
|
-
concurrent-ruby (~> 1.0)
|
244
|
-
rack (> 1, < 3)
|
245
|
-
sprockets-rails (3.4.2)
|
246
|
-
actionpack (>= 5.2)
|
247
|
-
activesupport (>= 5.2)
|
248
|
-
sprockets (>= 3.0.0)
|
249
243
|
tainbox (2.1.2)
|
250
244
|
activesupport
|
251
|
-
thor (1.1
|
252
|
-
|
245
|
+
thor (1.2.1)
|
246
|
+
timeout (0.3.2)
|
247
|
+
tzinfo (2.0.6)
|
253
248
|
concurrent-ruby (~> 1.0)
|
254
|
-
unicode-display_width (2.
|
249
|
+
unicode-display_width (2.4.2)
|
255
250
|
websocket-driver (0.7.5)
|
256
251
|
websocket-extensions (>= 0.1.0)
|
257
252
|
websocket-extensions (0.1.5)
|
258
|
-
zeitwerk (2.
|
253
|
+
zeitwerk (2.6.7)
|
259
254
|
|
260
255
|
PLATFORMS
|
261
256
|
ruby
|
@@ -265,14 +260,14 @@ DEPENDENCIES
|
|
265
260
|
bundler-audit
|
266
261
|
pry
|
267
262
|
rabbit_messaging!
|
268
|
-
rails
|
263
|
+
rails
|
269
264
|
rake
|
270
265
|
rspec
|
271
266
|
rspec-its
|
272
267
|
rubocop-config-umbrellio
|
273
268
|
sentry-ruby-core
|
274
|
-
simplecov
|
269
|
+
simplecov
|
275
270
|
simplecov-lcov
|
276
271
|
|
277
272
|
BUNDLED WITH
|
278
|
-
2.
|
273
|
+
2.4.7
|
@@ -27,8 +27,8 @@ module Rabbit::Receiving::HandlerResolver
|
|
27
27
|
handler
|
28
28
|
else
|
29
29
|
raise UnsupportedEvent, "#{event.inspect} event from #{group_id.inspect} group is not " \
|
30
|
-
|
31
|
-
|
30
|
+
"supported, it requires a #{name.inspect} class inheriting from " \
|
31
|
+
"\"Rabbit::EventHandler\" to be defined"
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
data/lib/rabbit/version.rb
CHANGED
data/rabbit_messaging.gemspec
CHANGED
@@ -24,14 +24,4 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.add_runtime_dependency "rails", ">= 5.2"
|
25
25
|
spec.add_runtime_dependency "sneakers", "~> 2.0"
|
26
26
|
spec.add_runtime_dependency "tainbox"
|
27
|
-
|
28
|
-
spec.add_development_dependency "bundler"
|
29
|
-
spec.add_development_dependency "bundler-audit"
|
30
|
-
spec.add_development_dependency "pry"
|
31
|
-
spec.add_development_dependency "rake"
|
32
|
-
spec.add_development_dependency "rspec"
|
33
|
-
spec.add_development_dependency "rspec-its"
|
34
|
-
spec.add_development_dependency "rubocop-config-umbrellio"
|
35
|
-
spec.add_development_dependency "simplecov", ">= 0.21"
|
36
|
-
spec.add_development_dependency "simplecov-lcov"
|
37
27
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rabbit_messaging
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Umbrellio
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bunny
|
@@ -80,132 +80,6 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: bundler
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - ">="
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ">="
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: bundler-audit
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
104
|
-
type: :development
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - ">="
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: pry
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - ">="
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
118
|
-
type: :development
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - ">="
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '0'
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
name: rake
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
128
|
-
requirements:
|
129
|
-
- - ">="
|
130
|
-
- !ruby/object:Gem::Version
|
131
|
-
version: '0'
|
132
|
-
type: :development
|
133
|
-
prerelease: false
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
135
|
-
requirements:
|
136
|
-
- - ">="
|
137
|
-
- !ruby/object:Gem::Version
|
138
|
-
version: '0'
|
139
|
-
- !ruby/object:Gem::Dependency
|
140
|
-
name: rspec
|
141
|
-
requirement: !ruby/object:Gem::Requirement
|
142
|
-
requirements:
|
143
|
-
- - ">="
|
144
|
-
- !ruby/object:Gem::Version
|
145
|
-
version: '0'
|
146
|
-
type: :development
|
147
|
-
prerelease: false
|
148
|
-
version_requirements: !ruby/object:Gem::Requirement
|
149
|
-
requirements:
|
150
|
-
- - ">="
|
151
|
-
- !ruby/object:Gem::Version
|
152
|
-
version: '0'
|
153
|
-
- !ruby/object:Gem::Dependency
|
154
|
-
name: rspec-its
|
155
|
-
requirement: !ruby/object:Gem::Requirement
|
156
|
-
requirements:
|
157
|
-
- - ">="
|
158
|
-
- !ruby/object:Gem::Version
|
159
|
-
version: '0'
|
160
|
-
type: :development
|
161
|
-
prerelease: false
|
162
|
-
version_requirements: !ruby/object:Gem::Requirement
|
163
|
-
requirements:
|
164
|
-
- - ">="
|
165
|
-
- !ruby/object:Gem::Version
|
166
|
-
version: '0'
|
167
|
-
- !ruby/object:Gem::Dependency
|
168
|
-
name: rubocop-config-umbrellio
|
169
|
-
requirement: !ruby/object:Gem::Requirement
|
170
|
-
requirements:
|
171
|
-
- - ">="
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: '0'
|
174
|
-
type: :development
|
175
|
-
prerelease: false
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
177
|
-
requirements:
|
178
|
-
- - ">="
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
version: '0'
|
181
|
-
- !ruby/object:Gem::Dependency
|
182
|
-
name: simplecov
|
183
|
-
requirement: !ruby/object:Gem::Requirement
|
184
|
-
requirements:
|
185
|
-
- - ">="
|
186
|
-
- !ruby/object:Gem::Version
|
187
|
-
version: '0.21'
|
188
|
-
type: :development
|
189
|
-
prerelease: false
|
190
|
-
version_requirements: !ruby/object:Gem::Requirement
|
191
|
-
requirements:
|
192
|
-
- - ">="
|
193
|
-
- !ruby/object:Gem::Version
|
194
|
-
version: '0.21'
|
195
|
-
- !ruby/object:Gem::Dependency
|
196
|
-
name: simplecov-lcov
|
197
|
-
requirement: !ruby/object:Gem::Requirement
|
198
|
-
requirements:
|
199
|
-
- - ">="
|
200
|
-
- !ruby/object:Gem::Version
|
201
|
-
version: '0'
|
202
|
-
type: :development
|
203
|
-
prerelease: false
|
204
|
-
version_requirements: !ruby/object:Gem::Requirement
|
205
|
-
requirements:
|
206
|
-
- - ">="
|
207
|
-
- !ruby/object:Gem::Version
|
208
|
-
version: '0'
|
209
83
|
description: Rabbit (Rabbit Messaging)
|
210
84
|
email:
|
211
85
|
- oss@umbrellio.biz
|
@@ -265,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
265
139
|
- !ruby/object:Gem::Version
|
266
140
|
version: '0'
|
267
141
|
requirements: []
|
268
|
-
rubygems_version: 3.
|
142
|
+
rubygems_version: 3.4.7
|
269
143
|
signing_key:
|
270
144
|
specification_version: 4
|
271
145
|
summary: Rabbit (Rabbit Messaging)
|