Pry VS debug

Compare Pry vs debug and see what are their differences.

Pry

A runtime developer console and IRB alternative with powerful introspection capabilities. (by pry)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Pry debug
35 28
6,715 1,072
0.4% 1.6%
6.7 8.5
3 days ago 8 days ago
Ruby Ruby
MIT License BSD 2-clause "Simplified" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Pry

Posts with mentions or reviews of Pry. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-24.

debug

Posts with mentions or reviews of debug. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-13.
  • Metaprogramming in Ruby: It's All About the Self (2009)
    3 projects | news.ycombinator.com | 13 Apr 2024
    I've written Ruby for coming up on 20 years, so to be honest I haven't paid attention to what is written on that subject in recent years.

    Bundler shouldn't be running inside a trap context, but you might be running into a situation where standard input/output from the actual process triggering your breakpoint has been redirected. In that case, ruby-debug[1] is a good option, as you attach to it from outside[2]. Basically, run "rdbg --open yourscript.rb" and then use rdbg -A from another terminal.

    You use Pry remotely too[3] if you prefer.

    [1] https://github.com/ruby/debug

    [2] https://github.com/ruby/debug?tab=readme-ov-file#remote-debu...

    [3] https://github.com/Mon-Ouie/pry-remote

  • Ruby 3.3
    11 projects | news.ycombinator.com | 24 Dec 2023
  • Connecting Debugger to Rails Applications
    4 projects | dev.to | 19 Dec 2023
    Execution is paused at the breakpoint (which has a little arrow pointing at it). You can then enter commands to the rdbg prompt to control the debugger. For a list of the different commands you can use, visit the documentation for the debug gem.
  • Ask HN: What side projects landed you a job?
    62 projects | news.ycombinator.com | 3 Dec 2023
    In 2017, I wrote a toy language called Goby[1] to learn how Ruby works. A few folks contributed quite a bit to it and one of them later referred me to my previous job (as a backend developer).

    Fast-forward to 2021, I got interested in debugging tools so I started contributing to the then newly created Ruby debugger[2]. In less than a year I opened more than a hundred PRs and became the 2nd biggest contributor of it. And that eventually landed me a job to work on Ruby's development tools, like LSP servers, REPLs, and of course, the debugger :-)

    [1] https://github.com/goby-lang/goby

    [2] https://github.com/ruby/debug

  • Ruby Tip – Interactive debugging without the need for gems
    1 project | news.ycombinator.com | 22 Nov 2023
    Fun fact, Ruby as a single-threaded language is how most people experience it, but Ruby has a rich cooperative multitasking called Fibers that hopefully is getting more exposure, in amongst a bevy of competing implementations and other also-ran concurrency primitives (besides the usual contenders like Threads, Process fork, foreman that just runs several processes alongside one another...)

    https://github.com/ruby/debug/issues/486#issuecomment-157531...

    If you want to use debugging and multi-threaded or multi-fiber Ruby at once, you can! You just have to get a bit creative. I always refer back to this thread on the Ruby `debug` gem (though the advice applies to any other REPL you can use) about applying a Mutex. You can use the built-in Fiber.blocking to prevent other fibers from running at the same time as yours, or you can use a Mutex to just ensure that you don't hit the debugger multiple times in the same process IO that would mean you've got multiple REPLs all grappling for the StdIO at once.

    For a long time Ruby dev who almost never did concurrency unless it was facilitated by the OS, or before being exposed to it directly in other languages like Go, the Ruby "super power" remains intact, it's just a bit more mysterious with the concurrency stuff added. Ruby has amazing diversity in its concurrency tools, which is a nice way of saying "the language authors decided not to pick a king concurrent runtime/winning gem whilst all of the competing implementations were all a bit nascent and un-fully-formed!"

    I like the bruno/fiber-scheduler but it looks like it is not the winner. It should be easy to switch to another fibers implementation, I think async is the crown champion now, but I still haven't been motivated to switch - the fiber-scheduler that is named fiber-scheduler has been good enough for me, despite shortcomings!

  • Debugging Silent Create Action Failures in Rails
    2 projects | dev.to | 9 Nov 2023
    Debuggers are powerful tools that allow you to step through your code line-by-line, inspecting variables and understanding the flow of execution. Using debuggers is a whole topic unto itself, and getting into the weeds with that would balloon the scope of this post. If you want more information on using them, I recommend reading the README for rdbg. This is the debugging solution for modern Ruby/Rails development. It's in Ruby's stdlib as of v3.1, and Rails 7+ apps include it in the Gemfile by default. I also recommend this section of the Rails guides for exploring how to use the debug gem with Rails applications.
  • Intro to Trace Inspector that displays Ruby trace logs with pretty UI
    2 projects | dev.to | 24 May 2023
    Trace Inspector, a tool that displays Ruby trace logs with pretty UI while debugging in VS Code, has recently landed in debug.gem. debug.gem is a Ruby standard debugger library and the default debugger in Rails. Since debug.gem supports VS Code, you can debug Ruby programs in vscode-rdbg.
  • Debugging Help
    3 projects | /r/ruby | 17 May 2023
    For newer versions of Rails (introduced in v7): Debug Gem
  • Anyone else working through Michael Hartl's Learn Enough RoR Series that might be able to help me with a failing unit test?
    3 projects | /r/rubyonrails | 17 Apr 2023
    While pry is nice Ruby 2.6+ includes the debug gem in the standard library which avoids the need to install another dependency.
  • What's new in Ruby 3.2's IRB?
    1 project | /r/ruby | 14 Dec 2022
    Have you tried ruby/debug's catch command? You can do catch Exception to achieve the same effect.

What are some alternatives?

When comparing Pry and debug you can also consider the following projects:

Byebug - Debugging in Ruby 2

Hirb - A mini view framework for console/irb that's easy to use, even while under its influence. Console goodies include a no-wrap table, auto-pager, tree and menu.

vimspector - vimspector - A multi-language debugging system for Vim

irbtools - Improvements for Ruby's IRB console 💎︎

nvim-ts-context-commentstring - Neovim treesitter plugin for setting the commentstring based on the cursor location in a file.

pry-remote - Connect to Pry remotely

.dotfiles - My dotfiles

Amazing Print - Pretty print your Ruby objects with style -- in full color and with proper indentation

vim-dirvish - Directory viewer for Vim :zap:

delve - Delve is a debugger for the Go programming language.

ruby - The Ruby Programming Language