pheme 5.3.2 → 5.3.3
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/.rubocop_todo.yml +12 -14
- data/CHANGELOG.md +5 -1
- data/Gemfile.lock +28 -34
- data/lib/pheme/version.rb +1 -1
- data/spec/support/example_queue_poller.rb +2 -2
- 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: 1682f45cc6381c623808a02e81ec990267fb4cae120cd201d7308d1cdd04ae58
|
|
4
|
+
data.tar.gz: 3479b1a218f9210a0dbb79f03bbed0938f60610cc6586f44de4e521b4e4a054f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a70cdc3830479b6d971a7fa8610719d8da84cccbcd11c3f053250684051c6ce23239e5210fdfe1cb8225011a2c8820ffe7ac4f4f04fd46328840be8eb57cea8
|
|
7
|
+
data.tar.gz: c7451b4b7f28b9d2f0046c7ba35867471a50369e2042b8b52f25c65cac4f19aeed82a0189f477be60b2a9c2de918e85ef5013324c7bff90628cf8e034edeec38
|
data/.rubocop_todo.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on 2024-
|
|
3
|
+
# on 2024-06-14 14:59:19 UTC using RuboCop version 1.64.1.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
@@ -11,10 +11,18 @@
|
|
|
11
11
|
Metrics/AbcSize:
|
|
12
12
|
Max: 20
|
|
13
13
|
|
|
14
|
+
# Offense count: 2
|
|
15
|
+
# Configuration parameters: AllowedPatterns.
|
|
16
|
+
# AllowedPatterns: ^expect_, ^assert_
|
|
17
|
+
RSpec/NoExpectationExample:
|
|
18
|
+
Exclude:
|
|
19
|
+
- 'spec/logger_spec.rb'
|
|
20
|
+
- 'spec/queue_poller_spec.rb'
|
|
21
|
+
|
|
14
22
|
# Offense count: 9
|
|
15
|
-
# Configuration parameters: Include, CustomTransform, IgnoreMethods,
|
|
16
|
-
# Include: **/*_spec
|
|
17
|
-
RSpec/
|
|
23
|
+
# Configuration parameters: Include, CustomTransform, IgnoreMethods, IgnoreMetadata.
|
|
24
|
+
# Include: **/*_spec.rb
|
|
25
|
+
RSpec/SpecFilePathFormat:
|
|
18
26
|
Exclude:
|
|
19
27
|
- 'spec/configuration_spec.rb'
|
|
20
28
|
- 'spec/logger_spec.rb'
|
|
@@ -26,16 +34,6 @@ RSpec/FilePath:
|
|
|
26
34
|
- 'spec/topic_publisher_spec.rb'
|
|
27
35
|
- 'spec/version_spec.rb'
|
|
28
36
|
|
|
29
|
-
# Offense count: 14
|
|
30
|
-
# Configuration parameters: EnforcedStyle.
|
|
31
|
-
# SupportedStyles: have_received, receive
|
|
32
|
-
RSpec/MessageSpies:
|
|
33
|
-
Exclude:
|
|
34
|
-
- 'spec/message_handler_spec.rb'
|
|
35
|
-
- 'spec/queue_poller_spec.rb'
|
|
36
|
-
- 'spec/rollbar_spec.rb'
|
|
37
|
-
- 'spec/topic_publisher_spec.rb'
|
|
38
|
-
|
|
39
37
|
# Offense count: 2
|
|
40
38
|
# Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
|
|
41
39
|
RSpec/VerifiedDoubles:
|
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
## 5.3.
|
|
7
|
+
## 5.3.3 - 2024-06-14
|
|
8
|
+
### Changed
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 5.3.2 - 2024-05-27
|
|
8
12
|
### Changed
|
|
9
13
|
- Updated dependencies
|
|
10
14
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
pheme (5.3.
|
|
4
|
+
pheme (5.3.3)
|
|
5
5
|
activesupport (>= 4)
|
|
6
6
|
aws-sdk-sns (~> 1.1)
|
|
7
7
|
aws-sdk-sqs (~> 1.3)
|
|
@@ -11,7 +11,7 @@ PATH
|
|
|
11
11
|
GEM
|
|
12
12
|
remote: https://rubygems.org/
|
|
13
13
|
specs:
|
|
14
|
-
activesupport (7.1.3.
|
|
14
|
+
activesupport (7.1.3.4)
|
|
15
15
|
base64
|
|
16
16
|
bigdecimal
|
|
17
17
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
@@ -25,17 +25,17 @@ GEM
|
|
|
25
25
|
public_suffix (>= 2.0.2, < 6.0)
|
|
26
26
|
ast (2.4.2)
|
|
27
27
|
aws-eventstream (1.3.0)
|
|
28
|
-
aws-partitions (1.
|
|
29
|
-
aws-sdk-core (3.
|
|
28
|
+
aws-partitions (1.944.0)
|
|
29
|
+
aws-sdk-core (3.197.0)
|
|
30
30
|
aws-eventstream (~> 1, >= 1.3.0)
|
|
31
31
|
aws-partitions (~> 1, >= 1.651.0)
|
|
32
32
|
aws-sigv4 (~> 1.8)
|
|
33
33
|
jmespath (~> 1, >= 1.6.1)
|
|
34
|
-
aws-sdk-sns (1.
|
|
35
|
-
aws-sdk-core (~> 3, >= 3.
|
|
34
|
+
aws-sdk-sns (1.77.0)
|
|
35
|
+
aws-sdk-core (~> 3, >= 3.197.0)
|
|
36
36
|
aws-sigv4 (~> 1.1)
|
|
37
|
-
aws-sdk-sqs (1.
|
|
38
|
-
aws-sdk-core (~> 3, >= 3.
|
|
37
|
+
aws-sdk-sqs (1.76.0)
|
|
38
|
+
aws-sdk-core (~> 3, >= 3.197.0)
|
|
39
39
|
aws-sigv4 (~> 1.1)
|
|
40
40
|
aws-sigv4 (1.8.0)
|
|
41
41
|
aws-eventstream (~> 1, >= 1.0.2)
|
|
@@ -44,12 +44,12 @@ GEM
|
|
|
44
44
|
bundler-audit (0.9.1)
|
|
45
45
|
bundler (>= 1.2.0, < 3)
|
|
46
46
|
thor (~> 1.0)
|
|
47
|
-
concurrent-ruby (1.
|
|
47
|
+
concurrent-ruby (1.3.3)
|
|
48
48
|
connection_pool (2.4.1)
|
|
49
49
|
diff-lcs (1.5.1)
|
|
50
50
|
docile (1.4.0)
|
|
51
51
|
drb (2.2.1)
|
|
52
|
-
git (2.
|
|
52
|
+
git (2.1.1)
|
|
53
53
|
activesupport (>= 5.0)
|
|
54
54
|
addressable (~> 2.8)
|
|
55
55
|
process_executer (~> 1.1)
|
|
@@ -60,23 +60,23 @@ GEM
|
|
|
60
60
|
json (2.7.2)
|
|
61
61
|
language_server-protocol (3.17.0.3)
|
|
62
62
|
lint_roller (1.1.0)
|
|
63
|
-
minitest (5.23.
|
|
63
|
+
minitest (5.23.1)
|
|
64
64
|
mutex_m (0.2.0)
|
|
65
|
-
parallel (1.
|
|
66
|
-
parser (3.3.
|
|
65
|
+
parallel (1.25.1)
|
|
66
|
+
parser (3.3.3.0)
|
|
67
67
|
ast (~> 2.4.1)
|
|
68
68
|
racc
|
|
69
69
|
process_executer (1.1.0)
|
|
70
70
|
public_suffix (5.0.5)
|
|
71
|
-
racc (1.
|
|
72
|
-
rack (3.
|
|
71
|
+
racc (1.8.0)
|
|
72
|
+
rack (3.1.3)
|
|
73
73
|
rainbow (3.1.1)
|
|
74
74
|
rake (13.2.1)
|
|
75
75
|
rchardet (1.8.0)
|
|
76
76
|
regexp_parser (2.9.2)
|
|
77
77
|
resource-struct (0.4.0)
|
|
78
|
-
rexml (3.
|
|
79
|
-
strscan
|
|
78
|
+
rexml (3.3.0)
|
|
79
|
+
strscan
|
|
80
80
|
rspec (3.13.0)
|
|
81
81
|
rspec-core (~> 3.13.0)
|
|
82
82
|
rspec-expectations (~> 3.13.0)
|
|
@@ -85,7 +85,7 @@ GEM
|
|
|
85
85
|
rspec-expectations (>= 2.99.0.beta1)
|
|
86
86
|
rspec-core (3.13.0)
|
|
87
87
|
rspec-support (~> 3.13.0)
|
|
88
|
-
rspec-expectations (3.13.
|
|
88
|
+
rspec-expectations (3.13.1)
|
|
89
89
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
90
90
|
rspec-support (~> 3.13.0)
|
|
91
91
|
rspec-its (1.3.0)
|
|
@@ -97,7 +97,7 @@ GEM
|
|
|
97
97
|
rspec-support (3.13.1)
|
|
98
98
|
rspec_junit_formatter (0.6.0)
|
|
99
99
|
rspec-core (>= 2, < 4, != 2.12.0)
|
|
100
|
-
rubocop (1.
|
|
100
|
+
rubocop (1.64.1)
|
|
101
101
|
json (~> 2.3)
|
|
102
102
|
language_server-protocol (>= 3.17.0)
|
|
103
103
|
parallel (~> 1.10)
|
|
@@ -110,10 +110,8 @@ GEM
|
|
|
110
110
|
unicode-display_width (>= 2.4.0, < 3.0)
|
|
111
111
|
rubocop-ast (1.31.3)
|
|
112
112
|
parser (>= 3.3.1.0)
|
|
113
|
-
rubocop-
|
|
114
|
-
rubocop (~> 1.
|
|
115
|
-
rubocop-factory_bot (2.25.1)
|
|
116
|
-
rubocop (~> 1.41)
|
|
113
|
+
rubocop-factory_bot (2.26.1)
|
|
114
|
+
rubocop (~> 1.61)
|
|
117
115
|
rubocop-performance (1.21.0)
|
|
118
116
|
rubocop (>= 1.48.1, < 2.0)
|
|
119
117
|
rubocop-ast (>= 1.31.1, < 2.0)
|
|
@@ -122,13 +120,8 @@ GEM
|
|
|
122
120
|
rack (>= 1.1)
|
|
123
121
|
rubocop (>= 1.33.0, < 2.0)
|
|
124
122
|
rubocop-ast (>= 1.30.0, < 2.0)
|
|
125
|
-
rubocop-rspec (
|
|
126
|
-
rubocop (~> 1.
|
|
127
|
-
rubocop-capybara (~> 2.17)
|
|
128
|
-
rubocop-factory_bot (~> 2.22)
|
|
129
|
-
rubocop-rspec_rails (~> 2.28)
|
|
130
|
-
rubocop-rspec_rails (2.28.3)
|
|
131
|
-
rubocop (~> 1.40)
|
|
123
|
+
rubocop-rspec (3.0.1)
|
|
124
|
+
rubocop (~> 1.61)
|
|
132
125
|
rubocop-vendor (0.13.0)
|
|
133
126
|
rubocop
|
|
134
127
|
ruby-progressbar (1.13.0)
|
|
@@ -139,10 +132,10 @@ GEM
|
|
|
139
132
|
simplecov-html (0.12.3)
|
|
140
133
|
simplecov_json_formatter (0.1.4)
|
|
141
134
|
smarter_csv (1.10.3)
|
|
142
|
-
standard (1.
|
|
135
|
+
standard (1.37.0)
|
|
143
136
|
language_server-protocol (~> 3.17.0.2)
|
|
144
137
|
lint_roller (~> 1.0)
|
|
145
|
-
rubocop (~> 1.
|
|
138
|
+
rubocop (~> 1.64.0)
|
|
146
139
|
standard-custom (~> 1.0.0)
|
|
147
140
|
standard-performance (~> 1.4)
|
|
148
141
|
standard-custom (1.0.2)
|
|
@@ -159,8 +152,9 @@ GEM
|
|
|
159
152
|
tzinfo (2.0.6)
|
|
160
153
|
concurrent-ruby (~> 1.0)
|
|
161
154
|
unicode-display_width (2.5.0)
|
|
162
|
-
ws-style (7.
|
|
163
|
-
rubocop-
|
|
155
|
+
ws-style (7.5.0)
|
|
156
|
+
rubocop-factory_bot (>= 2.26.0)
|
|
157
|
+
rubocop-rspec (>= 3.0.0)
|
|
164
158
|
rubocop-vendor (>= 0.11)
|
|
165
159
|
standard (>= 1.30.1)
|
|
166
160
|
standard-custom (>= 1.0.2)
|
data/lib/pheme/version.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
class ExampleQueuePoller < Pheme::QueuePoller
|
|
2
|
-
def initialize(queue_url: 'http://mock_url.test', **
|
|
3
|
-
super
|
|
2
|
+
def initialize(queue_url: 'http://mock_url.test', **)
|
|
3
|
+
super
|
|
4
4
|
end
|
|
5
5
|
|
|
6
6
|
def handle(message, metadata, message_attributes)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pheme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.3.
|
|
4
|
+
version: 5.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Graham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|