From e0b2f6654f5bda27cb994999fa1bf9dfb2c65820 Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Sat, 26 Jul 2025 09:56:49 -0700 Subject: [PATCH] Remove reference to unused parallel gem It *is* still used by rubocop, so this doesn't actually remove it from our install set. But it does clean up the Gemfile a bit! --- Gemfile | 3 --- Gemfile.lock | 1 - 2 files changed, 4 deletions(-) diff --git a/Gemfile b/Gemfile index 8d100a8c..94e885a6 100644 --- a/Gemfile +++ b/Gemfile @@ -56,9 +56,6 @@ gem 'rack-attack', '~> 6.7' # For testing emails in development. gem 'letter_opener', '~> 1.8', '>= 1.8.1', group: :development -# For parallel API calls. -gem 'parallel', '~> 1.23' - # For miscellaneous HTTP requests. gem "addressable", "~> 2.8" diff --git a/Gemfile.lock b/Gemfile.lock index 98569e79..f4aed699 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -552,7 +552,6 @@ DEPENDENCIES omniauth (~> 2.1) omniauth-rails_csrf_protection (~> 1.0) omniauth_openid_connect (~> 0.7.1) - parallel (~> 1.23) protocol-rack (~> 0.10.0, < 0.11.0) rack-attack (~> 6.7) rack-mini-profiler (~> 3.1)