lamby 6.0.1 → 7.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: caf85fda1bf5e3fb1aa80fde0e0cb3f0f9398306c7a12a51cc92406fe8ccd29b
4
- data.tar.gz: 973d7a675fdc6d9d4373a5122dd86a756d3ed2396c325d96c65cf281c410f9a7
3
+ metadata.gz: d63e62ecbc343d8f72995141ae038bd4e4eb95adbc93f9d231df3a8ab7594da2
4
+ data.tar.gz: a242e2a1cbe159e4947a2ec599813fc6546f03be1afbf0c1fe09643e0dd3fde1
5
5
  SHA512:
6
- metadata.gz: abde3cc0dbd4dcc7fa2465e468e3e4840923fae6b1addd7f2b84b55922db0e10eeb4ecab4fac965ea9fc110ceb73069f2242e67e200f3c40a6af74d0f4c26bd7
7
- data.tar.gz: 26b40c2aca0f9b993a414e1791b71b1f037a3f3c2bdc41303fffb0bf401ed87502022d9cf4d90568f58d46cbebea3e6d31c2f51ad5bb6a391725d5f0be45439d
6
+ metadata.gz: 3b7dac574d40436a357ef8739e7a4c69f8ba054bf44cb4023ae07c6dc661f79615fb13319b2aec20e237762c9ac98568a0350a0b1650c995347baa8699f70715
7
+ data.tar.gz: 72057efac48d554b617f3e14ef6a7906ff9031ff959a8fbe67a0507669e759869caf50ef18cf29d2f99e9d48aee607e18e7cbe9aba08f614c4ae876dd595cafe
@@ -1 +1,5 @@
1
- FROM mcr.microsoft.com/devcontainers/ruby:3.1
1
+ FROM mcr.microsoft.com/devcontainers/ruby:3.3
2
+ # Remove stale Yarn apt config baked into older base images — uses deprecated apt-key method
3
+ # that Ubuntu 24.04 rejects, causing devcontainer feature installs (docker-in-docker) to fail.
4
+ RUN rm -f /etc/apt/sources.list.d/yarn.list && \
5
+ apt-key del 62D54FD4003F6525 2>/dev/null || true
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "features": {
7
7
  "ghcr.io/devcontainers/features/node:latest": {},
8
- "ghcr.io/devcontainers/features/docker-in-docker:latest": {},
8
+ "ghcr.io/devcontainers/features/docker-in-docker:latest": { "moby": false },
9
9
  "ghcr.io/devcontainers/features/sshd:latest": {}
10
10
  },
11
11
  "customizations": {
@@ -20,7 +20,7 @@ jobs:
20
20
  uses: ruby/setup-ruby@v1
21
21
  with:
22
22
  bundler-cache: true
23
- ruby-version: ruby
23
+ ruby-version: .ruby-version
24
24
 
25
25
  # Release
26
26
  - uses: rubygems/release-gem@v1
@@ -3,7 +3,7 @@ on: [push]
3
3
  jobs:
4
4
  image:
5
5
  name: Image
6
- runs-on: ubuntu-20.04
6
+ runs-on: ubuntu-24.04
7
7
  steps:
8
8
  - uses: actions/checkout@v3
9
9
  - uses: docker/login-action@v2
@@ -18,7 +18,7 @@ jobs:
18
18
  cacheFrom: ghcr.io/rails-lambda/lamby-devcontainer
19
19
  runCmd: echo DONE!
20
20
  test:
21
- runs-on: ubuntu-20.04
21
+ runs-on: ubuntu-24.04
22
22
  needs: image
23
23
  steps:
24
24
  - name: Checkout
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.4.4
data/Gemfile CHANGED
@@ -2,9 +2,9 @@ source "https://rubygems.org"
2
2
  git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
3
3
  gemspec
4
4
 
5
- gem 'rails', '7.1.3.4'
6
- gem 'mocha', '~> 2.4'
7
- gem 'rack', "~> 3.1", ">= 3.1.7"
5
+ gem 'rails', '~> 8.1'
6
+ gem 'mocha', '~> 3.1'
7
+ gem 'rack', "~> 3.2"
8
8
 
9
9
  group :test do
10
10
  gem 'lambdakiq'
data/Gemfile.lock CHANGED
@@ -1,226 +1,251 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lamby (6.0.1)
4
+ lamby (7.0.0)
5
5
  lambda-console-ruby
6
6
  rack (>= 3.0.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (7.1.3.4)
12
- actionpack (= 7.1.3.4)
13
- activesupport (= 7.1.3.4)
11
+ action_text-trix (2.1.19)
12
+ railties
13
+ actioncable (8.1.3)
14
+ actionpack (= 8.1.3)
15
+ activesupport (= 8.1.3)
14
16
  nio4r (~> 2.0)
15
17
  websocket-driver (>= 0.6.1)
16
18
  zeitwerk (~> 2.6)
17
- actionmailbox (7.1.3.4)
18
- actionpack (= 7.1.3.4)
19
- activejob (= 7.1.3.4)
20
- activerecord (= 7.1.3.4)
21
- activestorage (= 7.1.3.4)
22
- activesupport (= 7.1.3.4)
23
- mail (>= 2.7.1)
24
- net-imap
25
- net-pop
26
- net-smtp
27
- actionmailer (7.1.3.4)
28
- actionpack (= 7.1.3.4)
29
- actionview (= 7.1.3.4)
30
- activejob (= 7.1.3.4)
31
- activesupport (= 7.1.3.4)
32
- mail (~> 2.5, >= 2.5.4)
33
- net-imap
34
- net-pop
35
- net-smtp
19
+ actionmailbox (8.1.3)
20
+ actionpack (= 8.1.3)
21
+ activejob (= 8.1.3)
22
+ activerecord (= 8.1.3)
23
+ activestorage (= 8.1.3)
24
+ activesupport (= 8.1.3)
25
+ mail (>= 2.8.0)
26
+ actionmailer (8.1.3)
27
+ actionpack (= 8.1.3)
28
+ actionview (= 8.1.3)
29
+ activejob (= 8.1.3)
30
+ activesupport (= 8.1.3)
31
+ mail (>= 2.8.0)
36
32
  rails-dom-testing (~> 2.2)
37
- actionpack (7.1.3.4)
38
- actionview (= 7.1.3.4)
39
- activesupport (= 7.1.3.4)
33
+ actionpack (8.1.3)
34
+ actionview (= 8.1.3)
35
+ activesupport (= 8.1.3)
40
36
  nokogiri (>= 1.8.5)
41
- racc
42
37
  rack (>= 2.2.4)
43
38
  rack-session (>= 1.0.1)
44
39
  rack-test (>= 0.6.3)
45
40
  rails-dom-testing (~> 2.2)
46
41
  rails-html-sanitizer (~> 1.6)
47
- actiontext (7.1.3.4)
48
- actionpack (= 7.1.3.4)
49
- activerecord (= 7.1.3.4)
50
- activestorage (= 7.1.3.4)
51
- activesupport (= 7.1.3.4)
42
+ useragent (~> 0.16)
43
+ actiontext (8.1.3)
44
+ action_text-trix (~> 2.1.15)
45
+ actionpack (= 8.1.3)
46
+ activerecord (= 8.1.3)
47
+ activestorage (= 8.1.3)
48
+ activesupport (= 8.1.3)
52
49
  globalid (>= 0.6.0)
53
50
  nokogiri (>= 1.8.5)
54
- actionview (7.1.3.4)
55
- activesupport (= 7.1.3.4)
51
+ actionview (8.1.3)
52
+ activesupport (= 8.1.3)
56
53
  builder (~> 3.1)
57
54
  erubi (~> 1.11)
58
55
  rails-dom-testing (~> 2.2)
59
56
  rails-html-sanitizer (~> 1.6)
60
- activejob (7.1.3.4)
61
- activesupport (= 7.1.3.4)
57
+ activejob (8.1.3)
58
+ activesupport (= 8.1.3)
62
59
  globalid (>= 0.3.6)
63
- activemodel (7.1.3.4)
64
- activesupport (= 7.1.3.4)
65
- activerecord (7.1.3.4)
66
- activemodel (= 7.1.3.4)
67
- activesupport (= 7.1.3.4)
60
+ activemodel (8.1.3)
61
+ activesupport (= 8.1.3)
62
+ activerecord (8.1.3)
63
+ activemodel (= 8.1.3)
64
+ activesupport (= 8.1.3)
68
65
  timeout (>= 0.4.0)
69
- activestorage (7.1.3.4)
70
- actionpack (= 7.1.3.4)
71
- activejob (= 7.1.3.4)
72
- activerecord (= 7.1.3.4)
73
- activesupport (= 7.1.3.4)
66
+ activestorage (8.1.3)
67
+ actionpack (= 8.1.3)
68
+ activejob (= 8.1.3)
69
+ activerecord (= 8.1.3)
70
+ activesupport (= 8.1.3)
74
71
  marcel (~> 1.0)
75
- activesupport (7.1.3.4)
72
+ activesupport (8.1.3)
76
73
  base64
77
74
  bigdecimal
78
- concurrent-ruby (~> 1.0, >= 1.0.2)
75
+ concurrent-ruby (~> 1.0, >= 1.3.1)
79
76
  connection_pool (>= 2.2.5)
80
77
  drb
81
78
  i18n (>= 1.6, < 2)
79
+ json
80
+ logger (>= 1.4.2)
82
81
  minitest (>= 5.1)
83
- mutex_m
84
- tzinfo (~> 2.0)
85
- aws-eventstream (1.3.0)
86
- aws-partitions (1.956.0)
87
- aws-sdk-core (3.201.1)
82
+ securerandom (>= 0.3)
83
+ tzinfo (~> 2.0, >= 2.0.5)
84
+ uri (>= 0.13.1)
85
+ aws-eventstream (1.4.0)
86
+ aws-partitions (1.1257.0)
87
+ aws-sdk-core (3.251.0)
88
88
  aws-eventstream (~> 1, >= 1.3.0)
89
- aws-partitions (~> 1, >= 1.651.0)
90
- aws-sigv4 (~> 1.8)
89
+ aws-partitions (~> 1, >= 1.992.0)
90
+ aws-sigv4 (~> 1.9)
91
+ base64
92
+ bigdecimal
91
93
  jmespath (~> 1, >= 1.6.1)
92
- aws-sdk-sqs (1.80.0)
93
- aws-sdk-core (~> 3, >= 3.201.0)
94
+ logger
95
+ aws-sdk-sqs (1.116.0)
96
+ aws-sdk-core (~> 3, >= 3.248.0)
94
97
  aws-sigv4 (~> 1.5)
95
- aws-sdk-ssm (1.150.0)
96
- aws-sdk-core (~> 3, >= 3.165.0)
97
- aws-sigv4 (~> 1.1)
98
- aws-sigv4 (1.8.0)
98
+ aws-sdk-ssm (1.216.0)
99
+ aws-sdk-core (~> 3, >= 3.248.0)
100
+ aws-sigv4 (~> 1.5)
101
+ aws-sigv4 (1.12.1)
99
102
  aws-eventstream (~> 1, >= 1.0.2)
100
- base64 (0.2.0)
101
- bigdecimal (3.1.8)
103
+ base64 (0.3.0)
104
+ bigdecimal (4.1.2)
102
105
  builder (3.3.0)
103
106
  coderay (1.1.3)
104
- concurrent-ruby (1.3.3)
105
- connection_pool (2.4.1)
107
+ concurrent-ruby (1.3.6)
108
+ connection_pool (3.0.2)
106
109
  crass (1.0.6)
107
- date (3.3.4)
108
- drb (2.2.1)
109
- erubi (1.13.0)
110
- globalid (1.2.1)
110
+ date (3.5.1)
111
+ drb (2.2.3)
112
+ erb (6.0.4)
113
+ erubi (1.13.1)
114
+ globalid (1.3.0)
111
115
  activesupport (>= 6.1)
112
- i18n (1.14.5)
116
+ i18n (1.14.8)
113
117
  concurrent-ruby (~> 1.0)
114
- io-console (0.7.2)
115
- irb (1.14.0)
118
+ io-console (0.8.2)
119
+ irb (1.18.0)
120
+ pp (>= 0.6.0)
121
+ prism (>= 1.3.0)
116
122
  rdoc (>= 4.0.0)
117
123
  reline (>= 0.4.2)
118
124
  jmespath (1.6.2)
125
+ json (2.19.8)
119
126
  lambda-console-ruby (1.0.0)
120
- lambdakiq (2.2.0)
127
+ lambdakiq (2.3.0)
121
128
  activejob
122
129
  aws-sdk-sqs
123
130
  concurrent-ruby
124
131
  railties
125
- loofah (2.22.0)
132
+ logger (1.7.0)
133
+ loofah (2.25.1)
126
134
  crass (~> 1.0.2)
127
135
  nokogiri (>= 1.12.0)
128
- mail (2.8.1)
136
+ mail (2.9.0)
137
+ logger
129
138
  mini_mime (>= 0.1.1)
130
139
  net-imap
131
140
  net-pop
132
141
  net-smtp
133
- marcel (1.0.4)
134
- method_source (1.0.0)
142
+ marcel (1.2.1)
143
+ method_source (1.1.0)
135
144
  mini_mime (1.1.5)
136
- minitest (5.24.1)
137
- minitest-focus (1.3.1)
138
- minitest (>= 4, < 6)
139
- mocha (2.4.0)
145
+ minitest (6.0.6)
146
+ drb (~> 2.0)
147
+ prism (~> 1.5)
148
+ minitest-focus (1.4.1)
149
+ minitest (> 5.0)
150
+ mocha (3.1.0)
140
151
  ruby2_keywords (>= 0.0.5)
141
- mutex_m (0.2.0)
142
- net-imap (0.4.14)
152
+ net-imap (0.6.4)
143
153
  date
144
154
  net-protocol
145
155
  net-pop (0.1.2)
146
156
  net-protocol
147
157
  net-protocol (0.2.2)
148
158
  timeout
149
- net-smtp (0.5.0)
159
+ net-smtp (0.5.1)
150
160
  net-protocol
151
- nio4r (2.7.3)
152
- nokogiri (1.16.6-aarch64-linux)
161
+ nio4r (2.7.5)
162
+ nokogiri (1.19.3-aarch64-linux-gnu)
153
163
  racc (~> 1.4)
154
- nokogiri (1.16.6-arm64-darwin)
164
+ nokogiri (1.19.3-arm64-darwin)
155
165
  racc (~> 1.4)
156
- nokogiri (1.16.6-x86_64-linux)
166
+ nokogiri (1.19.3-x86_64-linux-gnu)
157
167
  racc (~> 1.4)
158
- pry (0.14.2)
168
+ pp (0.6.3)
169
+ prettyprint
170
+ prettyprint (0.2.0)
171
+ prism (1.9.0)
172
+ pry (0.16.0)
159
173
  coderay (~> 1.1)
160
174
  method_source (~> 1.0)
161
- psych (5.1.2)
175
+ reline (>= 0.6.0)
176
+ psych (5.4.0)
177
+ date
162
178
  stringio
163
- racc (1.8.0)
164
- rack (3.1.7)
165
- rack-session (2.0.0)
179
+ racc (1.8.1)
180
+ rack (3.2.6)
181
+ rack-session (2.1.2)
182
+ base64 (>= 0.1.0)
166
183
  rack (>= 3.0.0)
167
- rack-test (2.1.0)
184
+ rack-test (2.2.0)
168
185
  rack (>= 1.3)
169
- rackup (2.1.0)
186
+ rackup (2.3.1)
170
187
  rack (>= 3)
171
- webrick (~> 1.8)
172
- rails (7.1.3.4)
173
- actioncable (= 7.1.3.4)
174
- actionmailbox (= 7.1.3.4)
175
- actionmailer (= 7.1.3.4)
176
- actionpack (= 7.1.3.4)
177
- actiontext (= 7.1.3.4)
178
- actionview (= 7.1.3.4)
179
- activejob (= 7.1.3.4)
180
- activemodel (= 7.1.3.4)
181
- activerecord (= 7.1.3.4)
182
- activestorage (= 7.1.3.4)
183
- activesupport (= 7.1.3.4)
188
+ rails (8.1.3)
189
+ actioncable (= 8.1.3)
190
+ actionmailbox (= 8.1.3)
191
+ actionmailer (= 8.1.3)
192
+ actionpack (= 8.1.3)
193
+ actiontext (= 8.1.3)
194
+ actionview (= 8.1.3)
195
+ activejob (= 8.1.3)
196
+ activemodel (= 8.1.3)
197
+ activerecord (= 8.1.3)
198
+ activestorage (= 8.1.3)
199
+ activesupport (= 8.1.3)
184
200
  bundler (>= 1.15.0)
185
- railties (= 7.1.3.4)
186
- rails-dom-testing (2.2.0)
201
+ railties (= 8.1.3)
202
+ rails-dom-testing (2.3.0)
187
203
  activesupport (>= 5.0.0)
188
204
  minitest
189
205
  nokogiri (>= 1.6)
190
- rails-html-sanitizer (1.6.0)
191
- loofah (~> 2.21)
192
- nokogiri (~> 1.14)
193
- railties (7.1.3.4)
194
- actionpack (= 7.1.3.4)
195
- activesupport (= 7.1.3.4)
196
- irb
206
+ rails-html-sanitizer (1.7.0)
207
+ loofah (~> 2.25)
208
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
209
+ railties (8.1.3)
210
+ actionpack (= 8.1.3)
211
+ activesupport (= 8.1.3)
212
+ irb (~> 1.13)
197
213
  rackup (>= 1.0.0)
198
214
  rake (>= 12.2)
199
215
  thor (~> 1.0, >= 1.2.2)
216
+ tsort (>= 0.2)
200
217
  zeitwerk (~> 2.6)
201
- rake (13.2.1)
202
- rdoc (6.7.0)
218
+ rake (13.4.2)
219
+ rdoc (7.2.0)
220
+ erb
203
221
  psych (>= 4.0.0)
204
- reline (0.5.9)
222
+ tsort
223
+ reline (0.6.3)
205
224
  io-console (~> 0.5)
206
225
  ruby2_keywords (0.0.5)
207
- stringio (3.1.1)
208
- thor (1.3.1)
209
- timecop (0.9.6)
210
- timeout (0.4.1)
226
+ securerandom (0.4.1)
227
+ stringio (3.2.0)
228
+ thor (1.5.0)
229
+ timecop (0.9.11)
230
+ timeout (0.6.1)
231
+ tsort (0.2.0)
211
232
  tzinfo (2.0.6)
212
233
  concurrent-ruby (~> 1.0)
213
- webrick (1.8.1)
214
- websocket-driver (0.7.6)
234
+ uri (1.1.1)
235
+ useragent (0.16.11)
236
+ webrick (1.9.2)
237
+ websocket-driver (0.8.1)
238
+ base64
215
239
  websocket-extensions (>= 0.1.0)
216
240
  websocket-extensions (0.1.5)
217
- zeitwerk (2.6.16)
241
+ zeitwerk (2.8.2)
218
242
 
219
243
  PLATFORMS
220
244
  aarch64-linux
221
245
  arm64-darwin-21
222
246
  arm64-darwin-22
223
247
  arm64-darwin-23
248
+ arm64-darwin-25
224
249
  x86_64-linux
225
250
 
226
251
  DEPENDENCIES
@@ -230,13 +255,13 @@ DEPENDENCIES
230
255
  lamby!
231
256
  minitest
232
257
  minitest-focus
233
- mocha (~> 2.4)
258
+ mocha (~> 3.1)
234
259
  pry
235
- rack (~> 3.1, >= 3.1.7)
236
- rails (= 7.1.3.4)
260
+ rack (~> 3.2)
261
+ rails (~> 8.1)
237
262
  rake
238
263
  timecop
239
264
  webrick
240
265
 
241
266
  BUNDLED WITH
242
- 2.3.26
267
+ 4.0.13
data/lamby.gemspec CHANGED
@@ -25,7 +25,6 @@ Gem::Specification.new do |spec|
25
25
  spec.add_development_dependency 'rake'
26
26
  spec.add_development_dependency 'minitest'
27
27
  spec.add_development_dependency 'minitest-focus'
28
- spec.add_development_dependency 'mocha'
29
28
  spec.add_development_dependency 'pry'
30
29
  spec.add_development_dependency 'timecop'
31
30
  spec.add_development_dependency 'webrick'
data/lib/lamby/handler.rb CHANGED
@@ -38,7 +38,7 @@ module Lamby
38
38
  end
39
39
 
40
40
  def body
41
- @rbody ||= ''.tap do |rbody|
41
+ @rbody ||= String.new.tap do |rbody|
42
42
  @body.each { |part| rbody << part.to_s if part }
43
43
  @body.close if @body.respond_to? :close
44
44
  end
@@ -68,7 +68,7 @@ module Lamby
68
68
  end
69
69
 
70
70
  def dotenv_contents
71
- params.each_with_object('') do |param, contents|
71
+ params.each_with_object(String.new) do |param, contents|
72
72
  line = "#{param.env}=#{param.value}\n"
73
73
  contents << line
74
74
  end
data/lib/lamby/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lamby
2
- VERSION = '6.0.1'
2
+ VERSION = '7.0.0'
3
3
  end
data/lib/lamby.rb CHANGED
@@ -44,10 +44,10 @@ end
44
44
  # Add signal traps for clean exit
45
45
  Signal.trap("TERM") do
46
46
  puts "Received SIGTERM, exiting gracefully..."
47
- exit!(0) # exit! ensures no exception is raised
47
+ exit(0)
48
48
  end
49
49
 
50
50
  Signal.trap("INT") do
51
51
  puts "Received SIGINT, exiting gracefully..."
52
- exit!(0) # exit! ensures no exception is raised
52
+ exit(0)
53
53
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lamby
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.1
4
+ version: 7.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ken Collins
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-08-30 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rack
@@ -108,20 +107,6 @@ dependencies:
108
107
  - - ">="
109
108
  - !ruby/object:Gem::Version
110
109
  version: '0'
111
- - !ruby/object:Gem::Dependency
112
- name: mocha
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
110
  - !ruby/object:Gem::Dependency
126
111
  name: pry
127
112
  requirement: !ruby/object:Gem::Requirement
@@ -176,6 +161,7 @@ files:
176
161
  - ".github/workflows/release.yml"
177
162
  - ".github/workflows/test.yml"
178
163
  - ".gitignore"
164
+ - ".ruby-version"
179
165
  - CHANGELOG.md
180
166
  - CODE_OF_CONDUCT.md
181
167
  - Gemfile
@@ -211,7 +197,6 @@ homepage: https://github.com/rails-lambda/lamby
211
197
  licenses:
212
198
  - MIT
213
199
  metadata: {}
214
- post_install_message:
215
200
  rdoc_options: []
216
201
  require_paths:
217
202
  - lib
@@ -226,8 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
226
211
  - !ruby/object:Gem::Version
227
212
  version: '0'
228
213
  requirements: []
229
- rubygems_version: 3.5.11
230
- signing_key:
214
+ rubygems_version: 3.6.7
231
215
  specification_version: 4
232
216
  summary: Simple Rails & AWS Lambda Integration using Rack
233
217
  test_files: []