使用ruby-debug进入函数的命令是什么? 实施例
class Hello
def meth1
debugger
meth2
end
def meth2
puts "hello"
end
end
我想进入meth2并查看执行。需要类似命令,如n(下一个),c(继续),l(当前行)
答案 0 :(得分:1)
我不认为你搜索得非常努力,因为谷歌有很多有用的页面。
也许您会发现“Debugging with ruby-debug”非常有用,尤其是Step
,Next
和Finish
。