From 0efa63977c554a74be2b4eb176dd1afe678527c3 Mon Sep 17 00:00:00 2001 From: Tomas Goncalves <43731728+Runner-dev@users.noreply.github.com> Date: Fri, 21 Nov 2025 17:34:53 -0500 Subject: [PATCH] Added openssl to Gem explictly to fix rails issue#55886 --- Gemfile | 1 + Gemfile.lock | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index f68fed18..304228a6 100644 --- a/Gemfile +++ b/Gemfile @@ -67,3 +67,4 @@ gem "rack-cors", "~> 1.1" gem 'active_storage_validations' +gem 'openssl', '~> 3.3', '>= 3.3.2' # workaround for github.com/rails/rails/issues/55886 diff --git a/Gemfile.lock b/Gemfile.lock index 31a59068..f5a1b964 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -192,6 +192,7 @@ GEM omniauth-saml (2.2.3) omniauth (~> 2.1) ruby-saml (~> 1.18) + openssl (3.3.2) orm_adapter (0.5.0) puma (5.6.9) nio4r (~> 2.0) @@ -342,6 +343,7 @@ DEPENDENCIES omniauth omniauth-rails_csrf_protection omniauth-saml + openssl (~> 3.3, >= 3.3.2) puma rack-cors (~> 1.1) rails (~> 6.1.7.10)