pry-byebug:Pry中的逐步调试和堆栈导航

时间:2024-02-22 01:31:28
【文件属性】:

文件名称:pry-byebug:Pry中的逐步调试和堆栈导航

文件大小:40KB

文件格式:ZIP

更新时间:2024-02-22 01:31:28

ruby debugger pry repl pry-byebug

撬by 添加了逐步调试和堆栈导航功能,以使用。 要使用,请正常调用撬。 无需以其他方式启动脚本或应用。 在binding.pry之后,执行将在第一条语句中停止。 def some_method puts 'Hello World' # Run 'step' in the console to move here end binding . pry some_method # Execution will stop here. puts 'Goodbye World' # Run 'next' in the console to move here. 要求 MRI 2.4.0或更高。 安装 加 gem 'pry-byebug' 到您的Gemfile并运行 bundle install 如果打算使用它来调试测试,请确保在全局或:test组中包含该gem! 指令 分步调试 休息:管理断点。 步骤:将执行步骤移至下一行或下一行。 采用可选的数字参数来多次执行。 下一个:移至同一帧中的下一行。 还需要一个可选的数字参数来步进多行。 完成:执行直到当前堆栈帧返


【文件预览】:
pry-byebug-master
----pry-byebug.gemspec(858B)
----.dependabot()
--------config.yml(280B)
----.github()
--------FUNDING.yml(57B)
--------workflows()
----code_of_conduct.md(3KB)
----lib()
--------pry-byebug()
--------pry-byebug.rb(70B)
--------pry()
--------byebug()
----Gemfile(286B)
----.codeclimate.yml(687B)
----Rakefile(589B)
----CONTRIBUTING.md(578B)
----LICENSE(1KB)
----test()
--------test_helper.rb(909B)
--------pry_remote_ext_test.rb(98B)
--------commands()
--------thread_lock_test.rb(546B)
--------base_test.rb(408B)
--------examples()
--------pry_ext_test.rb(594B)
--------support()
--------processor_test.rb(917B)
--------breakpoints_test.rb(1KB)
----README.md(6KB)
----.rubocop.yml(603B)
----Gemfile.lock(2KB)
----.gitignore(122B)
----bin()
--------bundle(1KB)
--------rubocop(225B)
--------rake(219B)
----CHANGELOG.md(4KB)
----.mdlrc(22B)

网友评论