From 4f32b0058654913e0d47e7523acc3cb8fd2e8977 Mon Sep 17 00:00:00 2001 From: Tsutomu Katsube Date: Sun, 19 Oct 2025 08:26:22 +0900 Subject: [PATCH] Add missing require To fix the following error: ```console $ rake /Users/zzz/.rbenv/versions/3.4.2/bin/ruby test/run-test.rb Loaded suite test Started F ======================================================================== Failure: test: too many redirection(DownloaderTest::#download) /Users/zzz/src/github.com/red-data-tools/red-remote-input/test/test-downloader.rb:61:in 'block (2 levels) in ' 58: raise RemoteInput::Downloader::TooManyRedirects, "too many redirections: #{last_url}" 59: end 60: => 61: assert_raise(RemoteInput::Downloader::TooManyRedirects.new(expected_message)) do 62: downloader.download(output_path) 63: end 64: end )> expected but was ) (snip) ``` --- lib/remote_input/downloader.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/remote_input/downloader.rb b/lib/remote_input/downloader.rb index c09e756..9bd7d2d 100644 --- a/lib/remote_input/downloader.rb +++ b/lib/remote_input/downloader.rb @@ -7,6 +7,7 @@ require "pathname" require_relative "error" +require_relative "version" module RemoteInput class Downloader