Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.4.4
5 changes: 3 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
lamby (6.0.1)
lamby (7.0.0)
lambda-console-ruby
rack (>= 3.0.0)

Expand Down Expand Up @@ -245,6 +245,7 @@ PLATFORMS
arm64-darwin-21
arm64-darwin-22
arm64-darwin-23
arm64-darwin-25
x86_64-linux

DEPENDENCIES
Expand All @@ -263,4 +264,4 @@ DEPENDENCIES
webrick

BUNDLED WITH
2.3.26
4.0.13
2 changes: 1 addition & 1 deletion lib/lamby/handler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def set_cookies
end

def body
@rbody ||= ''.tap do |rbody|
@rbody ||= String.new.tap do |rbody|
@body.each { |part| rbody << part.to_s if part }
@body.close if @body.respond_to? :close
end
Expand Down
2 changes: 1 addition & 1 deletion lib/lamby/ssm_parameter_store.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def dotenv_file
end

def dotenv_contents
params.each_with_object('') do |param, contents|
params.each_with_object(String.new) do |param, contents|
line = "#{param.env}=#{param.value}\n"
contents << line
end
Expand Down
Loading