Conversation
ceritium
approved these changes
Sep 8, 2021
4373f55 to
6f56f9a
Compare
ruby/debug is a new debugger that is going to ship with CRuby.
It makes sense for Rails to switch to this one because that is
where the language is heading, and because Byebug is not fully
compatible with Zeitwerk. See
deivid-rodriguez/byebug#564
While ruby/debug has not been heavily tested with Zeitwerk,
casual usage seems to suggest it works without issues, including
explicit namespaces, which is where Byebug and Zeitwerk conflict.
Byebug is terrific, thanks a lot for all these years. ❤️
PatrickF1
added a commit
to PatrickF1/GraceTunes
that referenced
this pull request
Feb 11, 2024
ruby/debug is now officially sanctioned debugger for Rails 7 rails/rails#43187 https://www.mintbit.com/blog/byebug-replaced-with-debug-rails7 https://st0012.dev/from-byebug-to-ruby-debug
1 task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
This patch generates a dependency on
debugin theGemfileof new applications, replacingbyebug.Why
debugis planned to ship with Ruby 3.1. With this change we align Rails with Ruby.Caveat
While
debughas not been heavily tested withrails/main, and it is right now in 1.0.0 RC2, casual usage suggests we can attempt the switch.Praise
Byebug has been helping Rails programmers debug their applications for more than 7 years. ❤️