pry -debuggerは非常に便利です。次のコマンドがあります。
Pry.commands.alias_command 'c', 'continue'
Pry.commands.alias_command 's', 'step'
Pry.commands.alias_command 'n', 'next'
Pry.commands.alias_command 'f', 'finish'
しかし、私はに足を踏み入れる方法がわかりません。つまり、関数が呼び出されたときに、デバッガーがこの関数を開き、その実行を表示するようにします。
どうやってやるの ?