From 2014891fb6892926c030a9fc1e5f1f2143072b47 Mon Sep 17 00:00:00 2001 From: Seth Boyles Date: Tue, 2 Sep 2025 13:09:27 -0700 Subject: [PATCH 1/3] Enforce ruby and bundler versions --- Gemfile | 3 +++ Gemfile.lock | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/Gemfile b/Gemfile index 06cce3aed4..bc014750ca 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,10 @@ +ruby '3.2.6' + source 'https://rubygems.org' gem 'addressable' gem 'allowy', '>= 2.1.0' +gem 'bundler', '2.4.10' gem 'clockwork', require: false gem 'cloudfront-signer' gem 'concurrent-ruby' diff --git a/Gemfile.lock b/Gemfile.lock index a6709999b4..c4446ee7b0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -629,6 +629,7 @@ DEPENDENCIES addressable allowy (>= 2.1.0) azure-storage-blob! + bundler (= 2.4.10) byebug cf-uaa-lib (~> 4.0.9) clockwork @@ -712,5 +713,8 @@ DEPENDENCIES vmstat (~> 2.3) webmock (> 2.3.1) +RUBY VERSION + ruby 3.2.6p234 + BUNDLED WITH 2.4.10 From 728f705b26410252dc902934c85981035fc435c5 Mon Sep 17 00:00:00 2001 From: Seth Boyles Date: Mon, 6 Oct 2025 13:24:06 -0700 Subject: [PATCH 2/3] Apply suggestion from @johha Co-authored-by: Johannes Haass --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index bc014750ca..4d57fb37c7 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ -ruby '3.2.6' +ruby file: ".ruby-version" source 'https://rubygems.org' From 385ba1660a1205cd0656fbd02df0befee6860fac Mon Sep 17 00:00:00 2001 From: Seth Boyles Date: Mon, 6 Oct 2025 14:07:51 -0700 Subject: [PATCH 3/3] Revert "Apply suggestion from @johha" This reverts commit 728f705b26410252dc902934c85981035fc435c5. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 4d57fb37c7..bc014750ca 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ -ruby file: ".ruby-version" +ruby '3.2.6' source 'https://rubygems.org'