1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Lucas Kanashiro <kanashiro@debian.org>
Date: Tue, 17 Dec 2024 23:52:13 -0300
Subject: Explicitly require pathname
Forwarded: no
---
lib/maxitest/vendor/line.rb | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lib/maxitest/vendor/line.rb b/lib/maxitest/vendor/line.rb
index 9411ca3..24cb6c9 100644
--- a/lib/maxitest/vendor/line.rb
+++ b/lib/maxitest/vendor/line.rb
@@ -26,6 +26,9 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# BEGIN generated by rake update, do not modify
# https://raw.githubusercontent.com/judofyr/minitest-line/master/lib/minitest/line_plugin.rb
+
+require "pathname"
+
module Minitest
module Line
class << self
|