pheme 4.1.1 → 5.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +2 -1
- data/.github/workflows/stale.yml +20 -0
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +41 -41
- data/Rakefile +3 -1
- data/lib/pheme/message_type/aws_event.rb +1 -3
- data/lib/pheme/queue_poller.rb +2 -6
- data/lib/pheme/version.rb +1 -1
- data/lib/pheme.rb +1 -1
- data/pheme.gemspec +12 -12
- data/spec/message_handler_spec.rb +1 -3
- data/spec/message_type/aws_event_spec.rb +2 -1
- data/spec/message_type/sns_message_spec.rb +1 -1
- data/spec/queue_poller_spec.rb +12 -18
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b98a2b36e4ef4ec8519d0d3a0badcfaa96cfecd78900f22c70cf940c408e5e7f
|
4
|
+
data.tar.gz: 4cb16129224437e22d1f68e21ecc580c7f5f4bd2266b615aa6dc9f510f7ac3d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9c6c0fde54921b88f7ee23b8aa9073c513ac744b57a50d5285a0f52829c511fa3e4bdd0db8e1aebecc046abfe598b3401523c05672cc21e65c41244340924ae
|
7
|
+
data.tar.gz: 46bc98a89395c0fbf4a0940c112cd403f59c6383ad302211d73747442a8167cf394e40122df7024e8aef4c73bac49953ae047f92f8ac8f3f702164790b5d6c05
|
data/.github/workflows/main.yml
CHANGED
@@ -0,0 +1,20 @@
|
|
1
|
+
name: 'Close stale PRs'
|
2
|
+
on:
|
3
|
+
schedule:
|
4
|
+
- cron: '30 6 * * *' # 6:30 am UTC: 1:30 am EST
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
stale:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
steps:
|
10
|
+
- uses: actions/stale@v4
|
11
|
+
with:
|
12
|
+
days-before-stale: 30
|
13
|
+
days-before-close: 60
|
14
|
+
stale-pr-message: >
|
15
|
+
This issue has been automatically marked as stale because it has not had
|
16
|
+
recent activity. It will be closed if no further activity occurs.
|
17
|
+
close-pr-message: >
|
18
|
+
This issue has been automatically closed because it has had no activity
|
19
|
+
for over 90 days. Please re-open if you feel this was done in error.
|
20
|
+
exempt-pr-labels: 'dependabot,depfu,dependencies,security'
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,18 @@ 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.0.2 - 2022-02-25
|
8
|
+
### Changed
|
9
|
+
- Updated dependencies
|
10
|
+
|
11
|
+
## 5.0.1 - 2022-02-02
|
12
|
+
### Changed
|
13
|
+
- Updated dependencies
|
14
|
+
|
15
|
+
## 5.0.0 - 2022-01-04
|
16
|
+
### Changed
|
17
|
+
- Remove RecusiveOpenStruct in favor of ResourceStruct::FlexStruct
|
18
|
+
|
7
19
|
## 4.1.1 - 2022-01-04
|
8
20
|
### Changed
|
9
21
|
- Updated dependencies
|
data/Gemfile.lock
CHANGED
@@ -1,34 +1,34 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
pheme (
|
4
|
+
pheme (5.0.2)
|
5
5
|
activesupport (>= 4)
|
6
6
|
aws-sdk-sns (~> 1.1)
|
7
7
|
aws-sdk-sqs (~> 1.3)
|
8
|
-
|
8
|
+
resource-struct (~> 0.4)
|
9
9
|
smarter_csv (~> 1)
|
10
10
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
activesupport (7.0.
|
14
|
+
activesupport (7.0.2.2)
|
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
19
|
ast (2.4.2)
|
20
20
|
aws-eventstream (1.2.0)
|
21
|
-
aws-partitions (1.
|
22
|
-
aws-sdk-core (3.
|
21
|
+
aws-partitions (1.562.0)
|
22
|
+
aws-sdk-core (3.127.0)
|
23
23
|
aws-eventstream (~> 1, >= 1.0.2)
|
24
24
|
aws-partitions (~> 1, >= 1.525.0)
|
25
25
|
aws-sigv4 (~> 1.1)
|
26
26
|
jmespath (~> 1.0)
|
27
|
-
aws-sdk-sns (1.
|
28
|
-
aws-sdk-core (~> 3, >= 3.
|
27
|
+
aws-sdk-sns (1.53.0)
|
28
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
29
29
|
aws-sigv4 (~> 1.1)
|
30
|
-
aws-sdk-sqs (1.
|
31
|
-
aws-sdk-core (~> 3, >= 3.
|
30
|
+
aws-sdk-sqs (1.51.0)
|
31
|
+
aws-sdk-core (~> 3, >= 3.127.0)
|
32
32
|
aws-sigv4 (~> 1.1)
|
33
33
|
aws-sigv4 (1.4.0)
|
34
34
|
aws-eventstream (~> 1, >= 1.0.2)
|
@@ -38,63 +38,63 @@ GEM
|
|
38
38
|
concurrent-ruby (1.1.9)
|
39
39
|
diff-lcs (1.5.0)
|
40
40
|
docile (1.4.0)
|
41
|
-
git (1.10.
|
41
|
+
git (1.10.2)
|
42
42
|
rchardet (~> 1.8)
|
43
|
-
i18n (1.
|
43
|
+
i18n (1.10.0)
|
44
44
|
concurrent-ruby (~> 1.0)
|
45
|
-
jmespath (1.
|
45
|
+
jmespath (1.6.0)
|
46
46
|
minitest (5.15.0)
|
47
47
|
parallel (1.21.0)
|
48
|
-
parser (3.1.
|
48
|
+
parser (3.1.1.0)
|
49
49
|
ast (~> 2.4.1)
|
50
50
|
rack (2.2.3)
|
51
|
-
rainbow (3.
|
51
|
+
rainbow (3.1.1)
|
52
52
|
rake (13.0.6)
|
53
53
|
rchardet (1.8.0)
|
54
|
-
|
55
|
-
|
54
|
+
regexp_parser (2.2.1)
|
55
|
+
resource-struct (0.4.0)
|
56
56
|
rexml (3.2.5)
|
57
|
-
rspec (3.
|
58
|
-
rspec-core (~> 3.
|
59
|
-
rspec-expectations (~> 3.
|
60
|
-
rspec-mocks (~> 3.
|
57
|
+
rspec (3.11.0)
|
58
|
+
rspec-core (~> 3.11.0)
|
59
|
+
rspec-expectations (~> 3.11.0)
|
60
|
+
rspec-mocks (~> 3.11.0)
|
61
61
|
rspec-collection_matchers (1.2.0)
|
62
62
|
rspec-expectations (>= 2.99.0.beta1)
|
63
|
-
rspec-core (3.
|
64
|
-
rspec-support (~> 3.
|
65
|
-
rspec-expectations (3.
|
63
|
+
rspec-core (3.11.0)
|
64
|
+
rspec-support (~> 3.11.0)
|
65
|
+
rspec-expectations (3.11.0)
|
66
66
|
diff-lcs (>= 1.2.0, < 2.0)
|
67
|
-
rspec-support (~> 3.
|
67
|
+
rspec-support (~> 3.11.0)
|
68
68
|
rspec-its (1.3.0)
|
69
69
|
rspec-core (>= 3.0.0)
|
70
70
|
rspec-expectations (>= 3.0.0)
|
71
|
-
rspec-mocks (3.
|
71
|
+
rspec-mocks (3.11.0)
|
72
72
|
diff-lcs (>= 1.2.0, < 2.0)
|
73
|
-
rspec-support (~> 3.
|
74
|
-
rspec-support (3.
|
75
|
-
rspec_junit_formatter (0.5.
|
73
|
+
rspec-support (~> 3.11.0)
|
74
|
+
rspec-support (3.11.0)
|
75
|
+
rspec_junit_formatter (0.5.1)
|
76
76
|
rspec-core (>= 2, < 4, != 2.12.0)
|
77
|
-
rubocop (1.
|
77
|
+
rubocop (1.25.1)
|
78
78
|
parallel (~> 1.10)
|
79
|
-
parser (>= 3.
|
79
|
+
parser (>= 3.1.0.0)
|
80
80
|
rainbow (>= 2.2.2, < 4.0)
|
81
81
|
regexp_parser (>= 1.8, < 3.0)
|
82
82
|
rexml
|
83
83
|
rubocop-ast (>= 1.15.1, < 2.0)
|
84
84
|
ruby-progressbar (~> 1.7)
|
85
85
|
unicode-display_width (>= 1.4.0, < 3.0)
|
86
|
-
rubocop-ast (1.
|
87
|
-
parser (>= 3.
|
88
|
-
rubocop-performance (1.13.
|
86
|
+
rubocop-ast (1.16.0)
|
87
|
+
parser (>= 3.1.1.0)
|
88
|
+
rubocop-performance (1.13.2)
|
89
89
|
rubocop (>= 1.7.0, < 2.0)
|
90
90
|
rubocop-ast (>= 0.4.0)
|
91
|
-
rubocop-rails (2.13.
|
91
|
+
rubocop-rails (2.13.2)
|
92
92
|
activesupport (>= 4.2.0)
|
93
93
|
rack (>= 1.1)
|
94
94
|
rubocop (>= 1.7.0, < 2.0)
|
95
|
-
rubocop-rspec (2.
|
95
|
+
rubocop-rspec (2.8.0)
|
96
96
|
rubocop (~> 1.19)
|
97
|
-
rubocop-vendor (0.8.
|
97
|
+
rubocop-vendor (0.8.3)
|
98
98
|
rubocop (>= 0.53.0)
|
99
99
|
ruby-progressbar (1.11.0)
|
100
100
|
simplecov (0.21.2)
|
@@ -102,13 +102,13 @@ GEM
|
|
102
102
|
simplecov-html (~> 0.11)
|
103
103
|
simplecov_json_formatter (~> 0.1)
|
104
104
|
simplecov-html (0.12.3)
|
105
|
-
simplecov_json_formatter (0.1.
|
106
|
-
smarter_csv (1.2
|
107
|
-
thor (1.1
|
105
|
+
simplecov_json_formatter (0.1.4)
|
106
|
+
smarter_csv (1.4.2)
|
107
|
+
thor (1.2.1)
|
108
108
|
tzinfo (2.0.4)
|
109
109
|
concurrent-ruby (~> 1.0)
|
110
110
|
unicode-display_width (2.1.0)
|
111
|
-
ws-style (6.
|
111
|
+
ws-style (6.13.10)
|
112
112
|
rubocop (>= 1.23)
|
113
113
|
rubocop-performance (>= 1.10.2)
|
114
114
|
rubocop-rails (>= 2.9.1)
|
@@ -132,4 +132,4 @@ DEPENDENCIES
|
|
132
132
|
ws-style
|
133
133
|
|
134
134
|
BUNDLED WITH
|
135
|
-
2.2.
|
135
|
+
2.2.33
|
data/Rakefile
CHANGED
@@ -19,9 +19,7 @@ module Pheme
|
|
19
19
|
end
|
20
20
|
|
21
21
|
def parse_aws_event(message_contents)
|
22
|
-
|
23
|
-
RecursiveOpenStruct.new({ wrapper: message_contents }, recurse_over_arrays: true).wrapper
|
24
|
-
# rubocop:enable Vendor/RecursiveOpenStructUse
|
22
|
+
ResourceStruct::FlexStruct.new({ wrapper: message_contents }).wrapper
|
25
23
|
end
|
26
24
|
end
|
27
25
|
end
|
data/lib/pheme/queue_poller.rb
CHANGED
@@ -127,16 +127,12 @@ module Pheme
|
|
127
127
|
|
128
128
|
def parse_csv(message_contents)
|
129
129
|
parsed_body = SmarterCSV.process(StringIO.new(message_contents))
|
130
|
-
|
131
|
-
parsed_body.map { |item| RecursiveOpenStruct.new(item, recurse_over_arrays: true) }
|
132
|
-
# rubocop:enable Vendor/RecursiveOpenStructUse
|
130
|
+
parsed_body.map { |item| ResourceStruct::FlexStruct.new(item) }
|
133
131
|
end
|
134
132
|
|
135
133
|
def parse_json(message_contents)
|
136
134
|
parsed_body = JSON.parse(message_contents)
|
137
|
-
|
138
|
-
RecursiveOpenStruct.new({ wrapper: parsed_body }, recurse_over_arrays: true).wrapper
|
139
|
-
# rubocop:enable Vendor/RecursiveOpenStructUse
|
135
|
+
ResourceStruct::FlexStruct.new({ wrapper: parsed_body }).wrapper
|
140
136
|
end
|
141
137
|
|
142
138
|
def handle(message, metadata, message_attributes)
|
data/lib/pheme/version.rb
CHANGED
data/lib/pheme.rb
CHANGED
data/pheme.gemspec
CHANGED
@@ -1,32 +1,32 @@
|
|
1
1
|
lib = File.expand_path('lib', __dir__)
|
2
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
3
|
|
4
|
-
require
|
4
|
+
require 'pheme/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' unless s.respond_to?(:metadata)
|
8
8
|
|
9
|
-
s.name =
|
9
|
+
s.name = 'pheme'
|
10
10
|
s.version = Pheme::VERSION
|
11
|
-
s.authors = [
|
12
|
-
s.email = [
|
11
|
+
s.authors = ['Peter Graham']
|
12
|
+
s.email = ['peter@wealthsimple.com']
|
13
13
|
s.description = 'Ruby AWS SNS publisher + SQS poller & message handler'
|
14
14
|
s.summary = 'Ruby SNS publisher + SQS poller & message handler'
|
15
|
-
s.homepage =
|
15
|
+
s.homepage = 'https://github.com/wealthsimple/pheme'
|
16
16
|
|
17
17
|
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
18
18
|
s.executables = s.files.grep(%r{^bin/}).map { |f| File.basename(f) }
|
19
19
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
20
|
-
s.require_paths = [
|
21
|
-
s.license =
|
20
|
+
s.require_paths = ['lib']
|
21
|
+
s.license = 'MIT'
|
22
22
|
|
23
23
|
s.required_ruby_version = '>= 2.7.3'
|
24
24
|
|
25
|
-
s.add_dependency
|
26
|
-
s.add_dependency
|
27
|
-
s.add_dependency
|
28
|
-
s.add_dependency
|
29
|
-
s.add_dependency
|
25
|
+
s.add_dependency 'activesupport', '>= 4'
|
26
|
+
s.add_dependency 'aws-sdk-sns', '~> 1.1'
|
27
|
+
s.add_dependency 'aws-sdk-sqs', '~> 1.3'
|
28
|
+
s.add_dependency 'resource-struct', '~> 0.4'
|
29
|
+
s.add_dependency 'smarter_csv', '~> 1'
|
30
30
|
|
31
31
|
s.add_development_dependency 'bundler'
|
32
32
|
s.add_development_dependency 'git'
|
@@ -3,9 +3,7 @@ describe Pheme::MessageHandler do
|
|
3
3
|
|
4
4
|
before { use_default_configuration! }
|
5
5
|
|
6
|
-
|
7
|
-
let(:message) { double(status: status) }
|
8
|
-
# rubocop:enable RSpec/VerifiedDoubles
|
6
|
+
let(:message) { ResourceStruct::FlexStruct.new(status: status) }
|
9
7
|
let(:timestamp) { '2018-04-17T21:45:05.915Z' }
|
10
8
|
|
11
9
|
describe "#handle" do
|
@@ -3,7 +3,8 @@ describe Pheme::MessageType::AwsEvent do
|
|
3
3
|
let(:message_id) { SecureRandom.uuid }
|
4
4
|
let(:queue_url) { 'http://queue_url' }
|
5
5
|
let(:queue_message) do
|
6
|
-
|
6
|
+
instance_double(
|
7
|
+
Aws::SQS::Message,
|
7
8
|
message_id: message_id,
|
8
9
|
body: { 'Records' => records }.to_json,
|
9
10
|
queue_url: queue_url,
|
@@ -22,7 +22,7 @@ describe Pheme::MessageType::SnsMessage do
|
|
22
22
|
|
23
23
|
describe "#parse_message" do
|
24
24
|
context "with JSON message" do
|
25
|
-
let!(:message) {
|
25
|
+
let!(:message) { ResourceStruct::FlexStruct.new({ body: '{"Message":"{\"test\":\"test\"}"}' }) }
|
26
26
|
|
27
27
|
it 'parses the message correctly' do
|
28
28
|
expect(subject.parse_body(message).test).to eq("test")
|
data/spec/queue_poller_spec.rb
CHANGED
@@ -5,7 +5,7 @@ describe Pheme::QueuePoller do
|
|
5
5
|
let(:topic_arn) { 'arn:topic:test' }
|
6
6
|
|
7
7
|
let!(:queue_message) do
|
8
|
-
|
8
|
+
ResourceStruct::FlexStruct.new(
|
9
9
|
body: { Message: message }.to_json,
|
10
10
|
message_id: message_id,
|
11
11
|
)
|
@@ -57,7 +57,7 @@ describe Pheme::QueuePoller do
|
|
57
57
|
|
58
58
|
before do
|
59
59
|
allow(Aws::SQS::QueuePoller).to receive(:new).and_return(aws_poller)
|
60
|
-
allow(aws_poller).to receive(:before_request).and_yield(
|
60
|
+
allow(aws_poller).to receive(:before_request).and_yield(ResourceStruct::FlexStruct.new(received_message_count: max_messages))
|
61
61
|
end
|
62
62
|
|
63
63
|
it 'throws error' do
|
@@ -145,7 +145,7 @@ describe Pheme::QueuePoller do
|
|
145
145
|
|
146
146
|
context 'when message attributes' do
|
147
147
|
let(:queue_message) do
|
148
|
-
|
148
|
+
ResourceStruct::FlexStruct.new(
|
149
149
|
body: {
|
150
150
|
Message: message,
|
151
151
|
MessageAttributes: {
|
@@ -222,9 +222,7 @@ describe Pheme::QueuePoller do
|
|
222
222
|
end
|
223
223
|
|
224
224
|
it { is_expected.to have(2).items }
|
225
|
-
|
226
|
-
it { is_expected.to eq(RecursiveOpenStruct.new({ wrapper: expected_message }, recurse_over_arrays: true).wrapper) }
|
227
|
-
# rubocop:enable Vendor/RecursiveOpenStructUse
|
225
|
+
it { is_expected.to eq(ResourceStruct::FlexStruct.new({ wrapper: expected_message }).wrapper) }
|
228
226
|
end
|
229
227
|
|
230
228
|
context "with unknown message format" do
|
@@ -242,9 +240,7 @@ describe Pheme::QueuePoller do
|
|
242
240
|
|
243
241
|
it { is_expected.to be_a(Array) }
|
244
242
|
its(:first) { is_expected.to be_a(Array) }
|
245
|
-
|
246
|
-
its('first.first') { is_expected.to be_a(RecursiveOpenStruct) }
|
247
|
-
# rubocop:enable Vendor/RecursiveOpenStructUse
|
243
|
+
its('first.first') { is_expected.to be_a(ResourceStruct::FlexStruct) }
|
248
244
|
|
249
245
|
it "parses the nested object" do
|
250
246
|
expect(subject.first.first.test).to eq('test')
|
@@ -288,7 +284,7 @@ describe Pheme::QueuePoller do
|
|
288
284
|
}
|
289
285
|
}
|
290
286
|
let!(:queue_message) do
|
291
|
-
|
287
|
+
ResourceStruct::FlexStruct.new(
|
292
288
|
body: notification.to_json,
|
293
289
|
message_id: message_id,
|
294
290
|
)
|
@@ -321,7 +317,7 @@ describe Pheme::QueuePoller do
|
|
321
317
|
}
|
322
318
|
}
|
323
319
|
let!(:queue_message) do
|
324
|
-
|
320
|
+
ResourceStruct::FlexStruct.new(
|
325
321
|
body: notification.to_json,
|
326
322
|
message_id: message_id,
|
327
323
|
)
|
@@ -352,7 +348,7 @@ describe Pheme::QueuePoller do
|
|
352
348
|
}
|
353
349
|
end
|
354
350
|
let!(:queue_message) do
|
355
|
-
|
351
|
+
ResourceStruct::FlexStruct.new(
|
356
352
|
body: notification.to_json,
|
357
353
|
message_id: message_id,
|
358
354
|
)
|
@@ -365,9 +361,7 @@ describe Pheme::QueuePoller do
|
|
365
361
|
|
366
362
|
it "handles the message" do
|
367
363
|
expect(ExampleMessageHandler).to receive(:new).with(
|
368
|
-
|
369
|
-
message: RecursiveOpenStruct.new(message),
|
370
|
-
# rubocop:enable Vendor/RecursiveOpenStructUse
|
364
|
+
message: ResourceStruct::FlexStruct.new(message),
|
371
365
|
metadata: { timestamp: timestamp, topic_arn: topic_arn },
|
372
366
|
message_attributes: {},
|
373
367
|
)
|
@@ -393,7 +387,7 @@ describe Pheme::QueuePoller do
|
|
393
387
|
}
|
394
388
|
end
|
395
389
|
let!(:queue_message) do
|
396
|
-
|
390
|
+
ResourceStruct::FlexStruct.new(
|
397
391
|
body: notification.to_json,
|
398
392
|
message_id: message_id,
|
399
393
|
)
|
@@ -422,7 +416,7 @@ describe Pheme::QueuePoller do
|
|
422
416
|
context "AWS-event message" do
|
423
417
|
subject { ExampleAwsEventQueuePoller.new(queue_url: queue_url) }
|
424
418
|
|
425
|
-
let(:queue_message) {
|
419
|
+
let(:queue_message) { ResourceStruct::FlexStruct.new(body: { 'Records' => records }.to_json) }
|
426
420
|
let(:records) do
|
427
421
|
[{ 'eventVersion' => '2.0', eventSource: 'aws:s3' }]
|
428
422
|
end
|
@@ -443,7 +437,7 @@ describe Pheme::QueuePoller do
|
|
443
437
|
let(:message) { { status: 'complete' } }
|
444
438
|
let(:notification) { { 'MessageId' => SecureRandom.uuid, 'Message' => message.to_json, 'Type' => 'Notification', 'Timestamp' => timestamp } }
|
445
439
|
let!(:queue_message) do
|
446
|
-
|
440
|
+
ResourceStruct::FlexStruct.new(
|
447
441
|
body: notification.to_json,
|
448
442
|
message_id: message_id,
|
449
443
|
)
|
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:
|
4
|
+
version: 5.0.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-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -53,19 +53,19 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '1.3'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: resource-struct
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '0.4'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
68
|
+
version: '0.4'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: smarter_csv
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -216,6 +216,7 @@ files:
|
|
216
216
|
- ".github/CODEOWNERS"
|
217
217
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
218
218
|
- ".github/workflows/main.yml"
|
219
|
+
- ".github/workflows/stale.yml"
|
219
220
|
- ".gitignore"
|
220
221
|
- ".rspec"
|
221
222
|
- ".rubocop.yml"
|