pheme 5.1.0 → 5.1.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/CHANGELOG.md +8 -0
- data/Gemfile.lock +29 -25
- data/lib/pheme/version.rb +1 -1
- data/spec/configuration_spec.rb +2 -2
- data/spec/queue_poller_spec.rb +1 -1
- 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: 800e79269f37d46de9e86bc116e9593a4853b36b3226254aca146c7291528332
|
|
4
|
+
data.tar.gz: 41b10c55474b065c52419161cb45f153322a3c06bb0dd8a15d4d15999e2f1b32
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4820a998a4078789ab8581be7f14ea33ae6ec4a31a08adc620e9734490b78d9f9c744e5f2c47cdd73b37b76891471c1d74d91a0f50922827f6f17e331de32bd7
|
|
7
|
+
data.tar.gz: a3a93a7e8ae8b6e8b2b80cff7305c6b399bfdedea6b75c3b79e02eecdc5bd2f8db68451af04a76dbfb25e406949b7880f38afce35440b8fdcfa91537e3ef7fe0
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ 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.1.2 - 2022-10-12
|
|
8
|
+
### Changed
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 5.1.1 - 2022-09-09
|
|
12
|
+
### Changed
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
7
15
|
## 5.1.0 - 2022-08-16
|
|
8
16
|
### Changed
|
|
9
17
|
- Added support for FIFO params when publishing to SNS topic
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
pheme (5.1.
|
|
4
|
+
pheme (5.1.2)
|
|
5
5
|
activesupport (>= 4)
|
|
6
6
|
aws-sdk-sns (~> 1.1)
|
|
7
7
|
aws-sdk-sqs (~> 1.3)
|
|
@@ -11,26 +11,28 @@ PATH
|
|
|
11
11
|
GEM
|
|
12
12
|
remote: https://rubygems.org/
|
|
13
13
|
specs:
|
|
14
|
-
activesupport (7.0.
|
|
14
|
+
activesupport (7.0.4)
|
|
15
15
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
16
16
|
i18n (>= 1.6, < 2)
|
|
17
17
|
minitest (>= 5.1)
|
|
18
18
|
tzinfo (~> 2.0)
|
|
19
|
+
addressable (2.8.1)
|
|
20
|
+
public_suffix (>= 2.0.2, < 6.0)
|
|
19
21
|
ast (2.4.2)
|
|
20
22
|
aws-eventstream (1.2.0)
|
|
21
|
-
aws-partitions (1.
|
|
22
|
-
aws-sdk-core (3.
|
|
23
|
+
aws-partitions (1.644.0)
|
|
24
|
+
aws-sdk-core (3.159.0)
|
|
23
25
|
aws-eventstream (~> 1, >= 1.0.2)
|
|
24
26
|
aws-partitions (~> 1, >= 1.525.0)
|
|
25
27
|
aws-sigv4 (~> 1.1)
|
|
26
28
|
jmespath (~> 1, >= 1.6.1)
|
|
27
|
-
aws-sdk-sns (1.
|
|
29
|
+
aws-sdk-sns (1.55.0)
|
|
28
30
|
aws-sdk-core (~> 3, >= 3.127.0)
|
|
29
31
|
aws-sigv4 (~> 1.1)
|
|
30
32
|
aws-sdk-sqs (1.51.1)
|
|
31
33
|
aws-sdk-core (~> 3, >= 3.127.0)
|
|
32
34
|
aws-sigv4 (~> 1.1)
|
|
33
|
-
aws-sigv4 (1.5.
|
|
35
|
+
aws-sigv4 (1.5.2)
|
|
34
36
|
aws-eventstream (~> 1, >= 1.0.2)
|
|
35
37
|
bundler-audit (0.9.1)
|
|
36
38
|
bundler (>= 1.2.0, < 3)
|
|
@@ -38,21 +40,23 @@ GEM
|
|
|
38
40
|
concurrent-ruby (1.1.10)
|
|
39
41
|
diff-lcs (1.5.0)
|
|
40
42
|
docile (1.4.0)
|
|
41
|
-
git (1.
|
|
43
|
+
git (1.12.0)
|
|
44
|
+
addressable (~> 2.8)
|
|
42
45
|
rchardet (~> 1.8)
|
|
43
46
|
i18n (1.12.0)
|
|
44
47
|
concurrent-ruby (~> 1.0)
|
|
45
48
|
jmespath (1.6.1)
|
|
46
49
|
json (2.6.2)
|
|
47
|
-
minitest (5.16.
|
|
50
|
+
minitest (5.16.3)
|
|
48
51
|
parallel (1.22.1)
|
|
49
52
|
parser (3.1.2.1)
|
|
50
53
|
ast (~> 2.4.1)
|
|
51
|
-
|
|
54
|
+
public_suffix (5.0.0)
|
|
55
|
+
rack (3.0.0)
|
|
52
56
|
rainbow (3.1.1)
|
|
53
57
|
rake (13.0.6)
|
|
54
58
|
rchardet (1.8.0)
|
|
55
|
-
regexp_parser (2.
|
|
59
|
+
regexp_parser (2.6.0)
|
|
56
60
|
resource-struct (0.4.0)
|
|
57
61
|
rexml (3.2.5)
|
|
58
62
|
rspec (3.11.0)
|
|
@@ -63,7 +67,7 @@ GEM
|
|
|
63
67
|
rspec-expectations (>= 2.99.0.beta1)
|
|
64
68
|
rspec-core (3.11.0)
|
|
65
69
|
rspec-support (~> 3.11.0)
|
|
66
|
-
rspec-expectations (3.11.
|
|
70
|
+
rspec-expectations (3.11.1)
|
|
67
71
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
68
72
|
rspec-support (~> 3.11.0)
|
|
69
73
|
rspec-its (1.3.0)
|
|
@@ -72,30 +76,30 @@ GEM
|
|
|
72
76
|
rspec-mocks (3.11.1)
|
|
73
77
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
74
78
|
rspec-support (~> 3.11.0)
|
|
75
|
-
rspec-support (3.11.
|
|
76
|
-
rspec_junit_formatter (0.
|
|
79
|
+
rspec-support (3.11.1)
|
|
80
|
+
rspec_junit_formatter (0.6.0)
|
|
77
81
|
rspec-core (>= 2, < 4, != 2.12.0)
|
|
78
|
-
rubocop (1.
|
|
82
|
+
rubocop (1.36.0)
|
|
79
83
|
json (~> 2.3)
|
|
80
84
|
parallel (~> 1.10)
|
|
81
85
|
parser (>= 3.1.2.1)
|
|
82
86
|
rainbow (>= 2.2.2, < 4.0)
|
|
83
87
|
regexp_parser (>= 1.8, < 3.0)
|
|
84
88
|
rexml (>= 3.2.5, < 4.0)
|
|
85
|
-
rubocop-ast (>= 1.20.
|
|
89
|
+
rubocop-ast (>= 1.20.1, < 2.0)
|
|
86
90
|
ruby-progressbar (~> 1.7)
|
|
87
91
|
unicode-display_width (>= 1.4.0, < 3.0)
|
|
88
92
|
rubocop-ast (1.21.0)
|
|
89
93
|
parser (>= 3.1.1.0)
|
|
90
|
-
rubocop-performance (1.
|
|
94
|
+
rubocop-performance (1.15.0)
|
|
91
95
|
rubocop (>= 1.7.0, < 2.0)
|
|
92
96
|
rubocop-ast (>= 0.4.0)
|
|
93
|
-
rubocop-rails (2.
|
|
97
|
+
rubocop-rails (2.16.1)
|
|
94
98
|
activesupport (>= 4.2.0)
|
|
95
99
|
rack (>= 1.1)
|
|
96
|
-
rubocop (>= 1.
|
|
97
|
-
rubocop-rspec (2.
|
|
98
|
-
rubocop (~> 1.
|
|
100
|
+
rubocop (>= 1.33.0, < 2.0)
|
|
101
|
+
rubocop-rspec (2.13.2)
|
|
102
|
+
rubocop (~> 1.33)
|
|
99
103
|
rubocop-vendor (0.8.10)
|
|
100
104
|
rubocop (>= 0.53.0)
|
|
101
105
|
ruby-progressbar (1.11.0)
|
|
@@ -105,13 +109,13 @@ GEM
|
|
|
105
109
|
simplecov_json_formatter (~> 0.1)
|
|
106
110
|
simplecov-html (0.12.3)
|
|
107
111
|
simplecov_json_formatter (0.1.4)
|
|
108
|
-
smarter_csv (1.7.
|
|
112
|
+
smarter_csv (1.7.2)
|
|
109
113
|
thor (1.2.1)
|
|
110
114
|
tzinfo (2.0.5)
|
|
111
115
|
concurrent-ruby (~> 1.0)
|
|
112
|
-
unicode-display_width (2.
|
|
113
|
-
ws-style (6.
|
|
114
|
-
rubocop (>= 1.
|
|
116
|
+
unicode-display_width (2.3.0)
|
|
117
|
+
ws-style (6.14.1)
|
|
118
|
+
rubocop (>= 1.36)
|
|
115
119
|
rubocop-performance (>= 1.10.2)
|
|
116
120
|
rubocop-rails (>= 2.9.1)
|
|
117
121
|
rubocop-rspec (>= 2.2.0)
|
|
@@ -134,4 +138,4 @@ DEPENDENCIES
|
|
|
134
138
|
ws-style
|
|
135
139
|
|
|
136
140
|
BUNDLED WITH
|
|
137
|
-
2.3.
|
|
141
|
+
2.3.22
|
data/lib/pheme/version.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
|
@@ -34,8 +34,8 @@ describe Pheme do
|
|
|
34
34
|
end
|
|
35
35
|
|
|
36
36
|
context 'all mandatory attributes provided' do
|
|
37
|
-
let(:sns_client) { instance_double(
|
|
38
|
-
let(:sqs_client) { instance_double(
|
|
37
|
+
let(:sns_client) { instance_double(Aws::SNS::Client) }
|
|
38
|
+
let(:sqs_client) { instance_double(Aws::SQS::Client) }
|
|
39
39
|
|
|
40
40
|
before do
|
|
41
41
|
allow(sns_client).to receive(:is_a?).with(Aws::SNS::Client).and_return(true)
|
data/spec/queue_poller_spec.rb
CHANGED
|
@@ -52,7 +52,7 @@ describe Pheme::QueuePoller do
|
|
|
52
52
|
context 'received too many messages' do
|
|
53
53
|
subject { described_class.new(queue_url: queue_url, max_messages: max_messages) }
|
|
54
54
|
|
|
55
|
-
let(:aws_poller) { instance_double(
|
|
55
|
+
let(:aws_poller) { instance_double(Aws::SQS::QueuePoller) }
|
|
56
56
|
let(:max_messages) { 50 }
|
|
57
57
|
|
|
58
58
|
before do
|
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.1.
|
|
4
|
+
version: 5.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Graham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-10-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|