From 15a97d2c36b64db7c99a9673b285da19a8de2536 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Sat, 23 Aug 2025 16:40:29 -0400 Subject: ruby required fix, check for Integer not Fixnum - Ruby Unify Fixnum and Bignum into Integer (Feature #12005) - Fixnum removed https://bugs.ruby-lang.org/issues/12005 - Fixes Debian reported Bug [sisu] sisu: txt output not generated (Closes: #1098248) --- org/abstraction.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'org/abstraction.org') diff --git a/org/abstraction.org b/org/abstraction.org index 695c8e73..8f885e88 100644 --- a/org/abstraction.org +++ b/org/abstraction.org @@ -4957,7 +4957,7 @@ module SiSU_AO_Hash if (t_o.of !=:structure \ && t_o.of !=:comment \ && t_o.of !=:layout) \ - && t_o.ocn.is_a?(Fixnum) + && t_o.ocn.is_a?(Integer) case sha_ when :sha512 for hash_class in [ Digest::SHA512 ] -- cgit v1.2.3