From 796584dfec4660b8cc76740ef5dfba1f217f4994 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Wed, 12 Jun 2024 06:27:24 +0900 Subject: [PATCH] Relax required REXML version fix #943 REXML doesn't use the semantic versioning. So `~> 3.2.4` doesn't match for REXML dependency. For example, 3.3.0 doesn't have backward incompatibility. --- xcodeproj.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcodeproj.gemspec b/xcodeproj.gemspec index cf76e220..52eb6314 100644 --- a/xcodeproj.gemspec +++ b/xcodeproj.gemspec @@ -26,7 +26,7 @@ Gem::Specification.new do |s| s.add_runtime_dependency 'claide', '>= 1.0.2', '< 2.0' s.add_runtime_dependency 'colored2', '~> 3.1' s.add_runtime_dependency 'nanaimo', '~> 0.3.0' - s.add_runtime_dependency 'rexml', '~> 3.2.4' + s.add_runtime_dependency 'rexml', '~> 3.2', '>= 3.2.4' ## Make sure you can build the gem on older versions of RubyGems too: s.rubygems_version = '1.6.2'