I have been able to extract the YARV bytecode list of instructions from a "compiled" ruby file using RubyVM::InstructionSequence#disassemble
.
Now I would like to debug the code instruction by instruction.
Is there any debugger that let me do that?
Regards