From b9d80a325101dbd6781550a61bafa3593463869c Mon Sep 17 00:00:00 2001 From: Julik Tarkhanov Date: Tue, 5 Mar 2024 13:46:53 +0100 Subject: [PATCH] "uri" needs to be required from stdlib for type resolution --- lib/zip_kit/remote_io.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/zip_kit/remote_io.rb b/lib/zip_kit/remote_io.rb index 480747e..af71e3f 100644 --- a/lib/zip_kit/remote_io.rb +++ b/lib/zip_kit/remote_io.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require "uri" + # An object that fakes just-enough of an IO to be dangerous # - or, more precisely, to be useful as a source for the FileReader # central directory parser. Effectively we substitute an IO object