From ad02f99c616385bca1b84e161b93a144a99f71bf Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 4 Sep 2024 04:03:39 +0100 Subject: [PATCH] Remove strscan dependency declaration from gemspec (#204) `strscan` is a part of the Ruby standard library in all versions of Ruby supported by REXML. So we don't need to declare it as a dependency explicitly. See also: https://github.com/ruby/rexml/issues/140#issuecomment-2327645303 --- rexml.gemspec | 2 -- 1 file changed, 2 deletions(-) diff --git a/rexml.gemspec b/rexml.gemspec index 0de3e845..e5cf8581 100644 --- a/rexml.gemspec +++ b/rexml.gemspec @@ -58,6 +58,4 @@ Gem::Specification.new do |spec| spec.extra_rdoc_files = rdoc_files spec.required_ruby_version = '>= 2.5.0' - - spec.add_runtime_dependency("strscan") end