From f8dba3cc6da1fdf73a031ff75af8a7d69a29d7e4 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Fri, 27 Jun 2025 09:21:48 +0900 Subject: [PATCH 1/2] Support Ruby 3.5 style Set inspection result --- test/block_test.rb | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/test/block_test.rb b/test/block_test.rb index 8a83dc3..cd43a62 100644 --- a/test/block_test.rb +++ b/test/block_test.rb @@ -3,7 +3,6 @@ end require_relative 'test_helper' -require 'set' class TestBlockContext < Test::Unit::TestCase include PowerAssertTestHelper @@ -137,7 +136,19 @@ def Assertion(&blk) end t do - assert_equal <= '3.5' + < @@ -146,6 +157,8 @@ def Assertion(&blk) | # Set END + end + assert_equal expected, assertion_message { Set.new == Set.new([0]) } end From d8c8e28de4c9afa81f0df86d55d5049f9a9bea96 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Tue, 19 Aug 2025 16:55:48 +0900 Subject: [PATCH 2/2] Added fiddle for irb dependencies on Windows --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 992034e..e98ea7e 100644 --- a/Gemfile +++ b/Gemfile @@ -13,5 +13,6 @@ group :development do gem 'rake' gem 'simplecov' gem 'irb', '>= 1.3.1' + gem 'fiddle' gem 'benchmark-ips' end