File: 005_fix_set_import.patch

package info (click to toggle)
ruby-sshkit 1.21.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 692 kB
  • sloc: ruby: 3,521; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 477 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: Fix missing import of set from deprecation_logger
Author: Samuel Henrique <samueloph@debian.org>
Bug-Debian: https://bugs.debian.org/1005423
Index: ruby-sshkit/lib/sshkit/deprecation_logger.rb
===================================================================
--- ruby-sshkit.orig/lib/sshkit/deprecation_logger.rb
+++ ruby-sshkit/lib/sshkit/deprecation_logger.rb
@@ -1,3 +1,5 @@
+require 'set'
+
 module SSHKit
   class DeprecationLogger
     def initialize(out)