A Ruby implementation of the Lambda Console project specification:
https://github.com/rails-lambda/lambda-console
Please see that project for CLI usage with Ruby Lambda Functions or Rails Applications on Lambda using Lamby which leverages this gem.
An example of how to add Lambda Console to your own Ruby function.
def handler(event: context:)
return LambdaConsole.handle(event) if LambdaConsole.handle?(event)
# your code ...
end
The gem is available as open source project under the terms of the MIT License.
Everyone interacting in the LambdaConsole::Ruby project's codebase, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.