debug

Debugging functionality for Ruby (by ruby)

Debug Alternatives

Similar projects and alternatives to debug

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better debug alternative or higher similarity.

debug reviews and mentions

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
    what is ruby debug not able to do that you want it to do?

    https://github.com/ruby/debug

    a nice ide integrated experience:

    https://code.visualstudio.com/docs/languages/ruby#_debugging...

    https://github.com/ruby/vscode-rdbg

    https://code.visualstudio.com/docs/editor/debugging

  • 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.
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 26 Apr 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Stats

Basic debug repo stats
28
1,077
8.5
8 days ago

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com