From bd456389eb57dca5c7f389c4bdb9cfa97a06bfcb Mon Sep 17 00:00:00 2001 From: Kevin Cooper Date: Thu, 9 Jan 2025 18:10:30 -0500 Subject: [PATCH] hardcode stringio version again to fix prod errors --- Gemfile | 4 ++++ Gemfile.lock | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 295be3852..8a6a0e964 100644 --- a/Gemfile +++ b/Gemfile @@ -4,6 +4,10 @@ source "http://rubygems.org" gem "rails", "~> 7.1.0" +# Force some gems to older versions to prevent error in prod: +# "You have already activated base64 0.1.1, but your Gemfile requires base64 0.2.0. Since base64 is a default gem, ..." +gem "stringio", "3.1.1" + # Misc gem "attribute_normalizer", "~> 1.2" gem "csv" diff --git a/Gemfile.lock b/Gemfile.lock index 059ab7666..272bda9d1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -605,7 +605,7 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) - stringio (3.1.2) + stringio (3.1.1) sync (0.5.0) sys-filesystem (1.5.3) ffi (~> 1.1) @@ -768,6 +768,7 @@ DEPENDENCIES spinjs-rails (~> 1.3.0) spreadsheet sprockets + stringio (= 3.1.1) sys-filesystem (~> 1.4) term-ansicolor (~> 1.3) terrapin (~> 0.6.0)