Skip to content

Commit

Permalink
Remove debugger from Gemfile
Browse files Browse the repository at this point in the history
Ruby 3 ships with a debug gem that replaces byebug and the debugger gem
that were useful in earlier versions of Ruby. To use it just do this:

    require 'debug'

    debugger
  • Loading branch information
gma committed Nov 6, 2024
1 parent 10e1b09 commit 4440bfd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@ source 'https://rubygems.org'

# Specify your gem's dependencies in nesta.gemspec
gemspec

# gem (RUBY_VERSION =~ /^1/) ? 'debugger' : 'byebug'
2 changes: 0 additions & 2 deletions templates/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,3 @@ gem 'vlad-git', '2.2.0'<% end %>
group :development do
gem 'mr-sparkle'
end
# gem 'debugger'

0 comments on commit 4440bfd

Please sign in to comment.