https://github.com/fastruby/irblambda
AWS Lambda function to execute Ruby (2.5) statements
https://github.com/fastruby/irblambda
aws-lambda aws-lambda-ruby ruby
Last synced: 3 months ago
JSON representation
AWS Lambda function to execute Ruby (2.5) statements
- Host: GitHub
- URL: https://github.com/fastruby/irblambda
- Owner: fastruby
- Created: 2019-01-05T19:16:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-26T02:16:31.000Z (almost 5 years ago)
- Last Synced: 2025-01-10T16:44:34.712Z (4 months ago)
- Topics: aws-lambda, aws-lambda-ruby, ruby
- Language: Ruby
- Size: 13.7 KB
- Stars: 2
- Watchers: 17
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IRB Lambda [](https://travis-ci.org/fastruby/irbLambda)
A Lambda function to run one line of Ruby at a time
## Limitations
This works only with the standard library. There are no dependencies for this
function.## Requirements
You will need the `awscli` tool installed in your command line. If you are using
Homebrew, you can run: `brew install awscli`You will need to have AWS credentials for the `./bin/sync` command to work. You
can set them up over here:$ cat ~/.aws/credentials
[default]
aws_access_key_id =
aws_secret_access_key =## Setup
Just run:
./bin/setup
## Testing
You can run `rake` or `rspec` to run the test suite.
## Deploying
You can run this script to update the function in AWS:
./bin/sync
## Roadmap
- More user-friendly error messages and stack traces.
- More tests