From 2f82e467e92d5c5bd115ee017bf1d921a51e4abc Mon Sep 17 00:00:00 2001 From: Christian Kruse Date: Thu, 15 Feb 2024 15:00:41 +0100 Subject: [PATCH] avoid a warning for 3.3, too --- cfpropertylist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfpropertylist.gemspec b/cfpropertylist.gemspec index baabd6f..d8b635b 100644 --- a/cfpropertylist.gemspec +++ b/cfpropertylist.gemspec @@ -18,7 +18,7 @@ Gem::Specification.new do |s| end # Some gems will no longer bundled with Ruby >= 3.4 - if Gem::Version::new(RUBY_VERSION) >= Gem::Version::new('3.4.0') + if Gem::Version::new(RUBY_VERSION) >= Gem::Version::new('3.3.0') s.add_runtime_dependency("nkf") s.add_runtime_dependency("base64") end