From 428d2911ebf74d3b491aa94e51a819240d32fd3c Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Mon, 24 Aug 2026 07:27:00 -0700 Subject: [PATCH] chore: drop the pry development dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pry and friends are interactive-console conveniences. Nothing in lib/, spec/, the Rakefile, or CI references them — no require "pry", no binding.pry, no rake or workflow step that invokes them. They only ever slow down bundle install for contributors. Anyone who wants a REPL mid-debug can still gem install pry locally, or use debug, which ships with Ruby 3.1+ (the floor this gem already requires). Signed-off-by: Tim Smith --- Gemfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Gemfile b/Gemfile index 02e13cfa..bec4b938 100644 --- a/Gemfile +++ b/Gemfile @@ -15,10 +15,6 @@ group :docs do gem "yard" end -group :debug do - gem "pry" -end - group :cookstyle do gem "cookstyle" end