From 4440bfdc22fb2d130ffc1cc742d66b3b1d5f0837 Mon Sep 17 00:00:00 2001 From: Graham Ashton Date: Wed, 6 Nov 2024 21:57:43 +0000 Subject: [PATCH] Remove debugger from Gemfile 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 --- Gemfile | 2 -- templates/Gemfile | 2 -- 2 files changed, 4 deletions(-) diff --git a/Gemfile b/Gemfile index 027cd5a7..82acd8d6 100644 --- a/Gemfile +++ b/Gemfile @@ -2,5 +2,3 @@ source 'https://rubygems.org' # Specify your gem's dependencies in nesta.gemspec gemspec - -# gem (RUBY_VERSION =~ /^1/) ? 'debugger' : 'byebug' diff --git a/templates/Gemfile b/templates/Gemfile index 3c454556..7599727d 100644 --- a/templates/Gemfile +++ b/templates/Gemfile @@ -7,5 +7,3 @@ gem 'vlad-git', '2.2.0'<% end %> group :development do gem 'mr-sparkle' end - -# gem 'debugger'