From 5d5bb31ce6800cced65963912e73abfd782634fb Mon Sep 17 00:00:00 2001 From: Shana Moore Date: Fri, 17 Jan 2025 13:15:28 -0800 Subject: [PATCH] Conditionally set Rails and ActiveSupport versions based on Ruby version attempt to fix pipeline issue --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index 096f4da6..8a5cd52b 100644 --- a/Gemfile +++ b/Gemfile @@ -22,6 +22,8 @@ if RUBY_VERSION >= '3.0.0' gem 'hyrax', '>= 2.3' else gem 'hyrax', '~> 4.0' + gem 'rails', '~> 6.1' + gem 'activesupport', '~> 6.1' end gem 'oai'