lamby 6.0.0 → 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: 79c4dc3717bca2047df8aad522de82aef8152de33ead5736a3bbe7b906a2ade9
4
- data.tar.gz: 69e60e6da361e2dce84c3fb70544e38aed1573a9547f6122b8d97b295bcdba38
3
+ metadata.gz: d63e62ecbc343d8f72995141ae038bd4e4eb95adbc93f9d231df3a8ab7594da2
4
+ data.tar.gz: a242e2a1cbe159e4947a2ec599813fc6546f03be1afbf0c1fe09643e0dd3fde1
5
5
  SHA512:
6
- metadata.gz: c73664327b1a65093c7e4d8bf783dab564198d474c1ae888d979a4ef4a8bcc252eee56fc829757eeceeeca5e0509e47ac543a03834ea1c3acdb46a9a6bab722a
7
- data.tar.gz: 55b8775795c750ce1c7a49868b4323e272492cf072c7d7e68ebb34856217441947780a3630b5a9f6c732b6d15d04b58aac7bf1cc346f25e9f65f124b63f01351
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": {
@@ -0,0 +1,26 @@
1
+ name: Release Gem
2
+ on:
3
+ workflow_dispatch:
4
+ branches:
5
+ - master
6
+
7
+ jobs:
8
+ push:
9
+ name: Push gem to RubyGems.org
10
+ runs-on: ubuntu-latest
11
+
12
+ permissions:
13
+ id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
14
+ contents: write # IMPORTANT: this permission is required for `rake release` to push the release tag
15
+
16
+ steps:
17
+ # Set up
18
+ - uses: actions/checkout@v4
19
+ - name: Set up Ruby
20
+ uses: ruby/setup-ruby@v1
21
+ with:
22
+ bundler-cache: true
23
+ ruby-version: .ruby-version
24
+
25
+ # Release
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/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ See this http://keepachangelog.com link for information on how we want this docu
4
4
 
5
5
  ## v6.0.0
6
6
 
7
+ - Remove "cookies" header from rack response to conform to Lambda proxy integration requirements.
8
+
9
+ ## v6.0.0
10
+
7
11
  ### Changed
8
12
 
9
13
  - ⚠️ Breaking Changes ⚠️
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,224 +1,252 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lamby (6.0.0)
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)
97
+ aws-sigv4 (~> 1.5)
98
+ aws-sdk-ssm (1.216.0)
99
+ aws-sdk-core (~> 3, >= 3.248.0)
94
100
  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)
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
- pry (0.14.2)
166
+ nokogiri (1.19.3-x86_64-linux-gnu)
167
+ racc (~> 1.4)
168
+ pp (0.6.3)
169
+ prettyprint
170
+ prettyprint (0.2.0)
171
+ prism (1.9.0)
172
+ pry (0.16.0)
157
173
  coderay (~> 1.1)
158
174
  method_source (~> 1.0)
159
- psych (5.1.2)
175
+ reline (>= 0.6.0)
176
+ psych (5.4.0)
177
+ date
160
178
  stringio
161
- racc (1.8.0)
162
- rack (3.1.7)
163
- 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)
164
183
  rack (>= 3.0.0)
165
- rack-test (2.1.0)
184
+ rack-test (2.2.0)
166
185
  rack (>= 1.3)
167
- rackup (2.1.0)
186
+ rackup (2.3.1)
168
187
  rack (>= 3)
169
- webrick (~> 1.8)
170
- rails (7.1.3.4)
171
- actioncable (= 7.1.3.4)
172
- actionmailbox (= 7.1.3.4)
173
- actionmailer (= 7.1.3.4)
174
- actionpack (= 7.1.3.4)
175
- actiontext (= 7.1.3.4)
176
- actionview (= 7.1.3.4)
177
- activejob (= 7.1.3.4)
178
- activemodel (= 7.1.3.4)
179
- activerecord (= 7.1.3.4)
180
- activestorage (= 7.1.3.4)
181
- 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)
182
200
  bundler (>= 1.15.0)
183
- railties (= 7.1.3.4)
184
- rails-dom-testing (2.2.0)
201
+ railties (= 8.1.3)
202
+ rails-dom-testing (2.3.0)
185
203
  activesupport (>= 5.0.0)
186
204
  minitest
187
205
  nokogiri (>= 1.6)
188
- rails-html-sanitizer (1.6.0)
189
- loofah (~> 2.21)
190
- nokogiri (~> 1.14)
191
- railties (7.1.3.4)
192
- actionpack (= 7.1.3.4)
193
- activesupport (= 7.1.3.4)
194
- 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)
195
213
  rackup (>= 1.0.0)
196
214
  rake (>= 12.2)
197
215
  thor (~> 1.0, >= 1.2.2)
216
+ tsort (>= 0.2)
198
217
  zeitwerk (~> 2.6)
199
- rake (13.2.1)
200
- rdoc (6.7.0)
218
+ rake (13.4.2)
219
+ rdoc (7.2.0)
220
+ erb
201
221
  psych (>= 4.0.0)
202
- reline (0.5.9)
222
+ tsort
223
+ reline (0.6.3)
203
224
  io-console (~> 0.5)
204
225
  ruby2_keywords (0.0.5)
205
- stringio (3.1.1)
206
- thor (1.3.1)
207
- timecop (0.9.6)
208
- 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)
209
232
  tzinfo (2.0.6)
210
233
  concurrent-ruby (~> 1.0)
211
- webrick (1.8.1)
212
- 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
213
239
  websocket-extensions (>= 0.1.0)
214
240
  websocket-extensions (0.1.5)
215
- zeitwerk (2.6.16)
241
+ zeitwerk (2.8.2)
216
242
 
217
243
  PLATFORMS
218
244
  aarch64-linux
219
245
  arm64-darwin-21
220
246
  arm64-darwin-22
221
247
  arm64-darwin-23
248
+ arm64-darwin-25
249
+ x86_64-linux
222
250
 
223
251
  DEPENDENCIES
224
252
  aws-sdk-ssm
@@ -227,13 +255,13 @@ DEPENDENCIES
227
255
  lamby!
228
256
  minitest
229
257
  minitest-focus
230
- mocha (~> 2.4)
258
+ mocha (~> 3.1)
231
259
  pry
232
- rack (~> 3.1, >= 3.1.7)
233
- rails (= 7.1.3.4)
260
+ rack (~> 3.2)
261
+ rails (~> 8.1)
234
262
  rake
235
263
  timecop
236
264
  webrick
237
265
 
238
266
  BUNDLED WITH
239
- 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
@@ -81,7 +81,6 @@ module Lamby
81
81
  def rack_response
82
82
  { statusCode: status,
83
83
  headers: stringify_values!(headers),
84
- cookies: @set_cookies,
85
84
  body: body }.merge(rack.response(self))
86
85
  end
87
86
 
@@ -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.0'
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.0
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-07-15 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
@@ -173,8 +158,10 @@ extra_rdoc_files: []
173
158
  files:
174
159
  - ".devcontainer/Dockerfile"
175
160
  - ".devcontainer/devcontainer.json"
161
+ - ".github/workflows/release.yml"
176
162
  - ".github/workflows/test.yml"
177
163
  - ".gitignore"
164
+ - ".ruby-version"
178
165
  - CHANGELOG.md
179
166
  - CODE_OF_CONDUCT.md
180
167
  - Gemfile
@@ -210,7 +197,6 @@ homepage: https://github.com/rails-lambda/lamby
210
197
  licenses:
211
198
  - MIT
212
199
  metadata: {}
213
- post_install_message:
214
200
  rdoc_options: []
215
201
  require_paths:
216
202
  - lib
@@ -225,8 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
225
211
  - !ruby/object:Gem::Version
226
212
  version: '0'
227
213
  requirements: []
228
- rubygems_version: 3.3.27
229
- signing_key:
214
+ rubygems_version: 3.6.7
230
215
  specification_version: 4
231
216
  summary: Simple Rails & AWS Lambda Integration using Rack
232
217
  test_files: []