From 4f5447451d28137f488bcb20313d6c30fe3e9dd8 Mon Sep 17 00:00:00 2001
From: noelmcloughlin <noel.mcloughlin@gmail.com>
Date: Wed, 26 Jan 2022 08:42:51 +0000
Subject: [PATCH] ci(gemfile): allow rubygems proxy to be provided as an env
 var [skip ci]

* Automated using https://github.com/myii/ssf-formula/pull/408
---
 Gemfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Gemfile b/Gemfile
index 9e812aa..7ccf824 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,6 +1,6 @@
 # frozen_string_literal: true
 
-source 'https://rubygems.org'
+source ENV['PROXY_RUBYGEMSORG'] || 'https://rubygems.org'
 
 # Install the `inspec` gem using `git` because versions after `4.22.22`
 # suppress diff output; this version fixes this for our uses.
-- 
GitLab