Skip to content

Commit

Permalink
Relax required REXML version
Browse files Browse the repository at this point in the history
fix CocoaPods#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.
  • Loading branch information
kou committed Jun 11, 2024
1 parent b1e861b commit 796584d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xcodeproj.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 796584d

Please sign in to comment.