From 21709413831cc8c74e5c0d7e8fd3c584394fd346 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Thu, 22 Jun 2023 09:49:02 -0600 Subject: [PATCH] Added Debug gem Necessary for debugging purposes but also for running global health scripts across all projects (including this one). --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 73bf208..332a615 100644 --- a/Gemfile +++ b/Gemfile @@ -5,5 +5,6 @@ ruby File.read(".ruby-version").strip source "https://rubygems.org" gem "caliber", "~> 0.35" +gem "debug", "~> 1.8" gem "git-lint", "~> 6.0" gem "rake", "~> 13.0"