From b0b4d51e2c612441722f26d1bf1f6f464dedbd71 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Mon, 9 Oct 2023 17:34:35 -0600 Subject: [PATCH] Refactored Gemfile to use ruby file syntax Necessary to leverage syntax first provided in Bundler 2.4.19 and reduce the need for a custom implementation. Milestone: patch --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 332a615..cd66d34 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ # frozen_string_literal: true -ruby File.read(".ruby-version").strip +ruby file: ".ruby-version" source "https://rubygems.org"