From d7b0aae085e3d3dab8e6de7337236a295f7e93ca Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Sat, 25 Mar 2023 23:51:07 -0600 Subject: [PATCH] Really require Ruby 3.x Update the `required_ruby_version` in the gemspec to disallow Rubies less than 3.x. --- super_diff.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/super_diff.gemspec b/super_diff.gemspec index 66c610ba..7c80d48a 100644 --- a/super_diff.gemspec +++ b/super_diff.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |s| SuperDiff is a gem that hooks into RSpec to intelligently display the differences between two data structures of any type. DESC - s.required_ruby_version = [">= 2.4", "< 4"] + s.required_ruby_version = ">= 3" s.files = %w[README.md super_diff.gemspec] + Dir["lib/**/*"] s.test_files = Dir["spec/**/*"]