我想知道是否可以启动一个 Byebug 会话,从 Rails 控制台给出一个起点。我知道我可以在任何我想要的地方插入一条byebug
语句并开始调试,但我想做这样的事情:
Byebug.start do
# entry point
User.find(12).problematic_method
end
谢谢。
我想知道是否可以启动一个 Byebug 会话,从 Rails 控制台给出一个起点。我知道我可以在任何我想要的地方插入一条byebug
语句并开始调试,但我想做这样的事情:
Byebug.start do
# entry point
User.find(12).problematic_method
end
谢谢。