https://github.com/grantbirki/ruby-sandbox
A sandbox for doing things in Ruby
https://github.com/grantbirki/ruby-sandbox
ruby sandbox
Last synced: 2 months ago
JSON representation
A sandbox for doing things in Ruby
- Host: GitHub
- URL: https://github.com/grantbirki/ruby-sandbox
- Owner: GrantBirki
- Created: 2025-04-03T16:51:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-03T17:12:37.000Z (over 1 year ago)
- Last Synced: 2025-04-03T17:37:46.647Z (over 1 year ago)
- Topics: ruby, sandbox
- Language: Shell
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# ruby-sandbox
[](https://github.com/GrantBirki/ruby-sandbox/actions/workflows/lint.yml)
A sandbox for doing things in Ruby
## Setup ðŸ›
As always, simply run `script/bootstrap` to get started.
## Usage 💻
### Simple Sinatra App
To start the simple Sinatra app, run the following command:
```bash
script/server
```
### Running an Example
The `examples/` directory contains a number of Ruby scripts/examples that you can run. Here is an example:
```bash
# in one terminal window
script/server
# in another terminal window
LOG_LEVEL=DEBUG bundle exec ruby examples/persistent_http_client.rb
```