From f2f44c74bcd16c79794f351f9c1837479148b547 Mon Sep 17 00:00:00 2001 From: Keenan Brock Date: Mon, 30 Sep 2024 17:11:53 -0400 Subject: [PATCH 1/2] Testing with ruby 3.2, 3.3 --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ac09227..91f664f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,6 +16,8 @@ jobs: - '2.7' - '3.0' - '3.1' + - '3.2' + - '3.3' steps: - uses: actions/checkout@v4 - name: Set up Ruby From 206bf808da117811846c90636dc23a72849b955b Mon Sep 17 00:00:00 2001 From: Keenan Brock Date: Mon, 7 Oct 2024 12:08:43 -0400 Subject: [PATCH 2/2] explicitly require uri --- lib/manageiq/cross_repo/repository.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/manageiq/cross_repo/repository.rb b/lib/manageiq/cross_repo/repository.rb index c56a50e..a508b5b 100644 --- a/lib/manageiq/cross_repo/repository.rb +++ b/lib/manageiq/cross_repo/repository.rb @@ -1,3 +1,5 @@ +require 'uri' + module ManageIQ::CrossRepo class Repository attr_reader :identifier, :server