An open API service indexing awesome lists of open source software.

https://github.com/danimal141/ruby-debug-env

Environment to debug ruby code with GDB
https://github.com/danimal141/ruby-debug-env

docker gdb ruby

Last synced: 3 months ago
JSON representation

Environment to debug ruby code with GDB

Awesome Lists containing this project

README

          

# ruby-debug-env

## How to use
```
$ docker build . -t ruby-debug-env:latest
$ docker run --rm --privileged --cap-add=SYS_PTRACE --security-opt seccomp=unconfined -it ruby-debug-env bash
$ gdb --args ruby $(which bundle) exec ruby ./test.rb
```