如何使用rails pry调试器?

时间:2013-05-30 07:47:42

标签: ruby-on-rails-3 debugging pry

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'

但是,我不知道如何进入。也就是说,当调用一个函数时,我希望调试器打开这个函数并显示它的执行情况。

我该怎么做?

1 个答案:

答案 0 :(得分:14)

正如你所说@deivid,step进入,而next接下来。我错了。