diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-05-08 16:21:15 +0900 |
---|---|---|
committer | git <[email protected]> | 2023-05-08 07:21:21 +0000 |
commit | 6987ec45b18924e9dcbf1439fe92a2ab7c7fc8bd (patch) | |
tree | 3822c374101d9c833fe22727024dac14d8e1b53b /ext/stringio/stringio.gemspec | |
parent | fb23fba082cc5f2f422e1ede0e8081ffbda19501 (diff) |
[ruby/stringio] Drop support for ruby 2.6 or earlier
(https://github.com/ruby/stringio/pull/47)
`rb_io_extract_modeenc` has been exported since ruby 2.7.
Diffstat (limited to 'ext/stringio/stringio.gemspec')
-rw-r--r-- | ext/stringio/stringio.gemspec | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/stringio/stringio.gemspec b/ext/stringio/stringio.gemspec index 1015d261f5..7d320b3e78 100644 --- a/ext/stringio/stringio.gemspec +++ b/ext/stringio/stringio.gemspec @@ -14,7 +14,6 @@ Gem::Specification.new do |s| s.name = "stringio" s.version = source_version - s.required_rubygems_version = Gem::Requirement.new(">= 2.6") s.require_paths = ["lib"] s.authors = ["Nobu Nakada", "Charles Oliver Nutter"] s.description = "Pseudo `IO` class from/to `String`." @@ -30,7 +29,7 @@ Gem::Specification.new do |s| end s.homepage = "https://github.com/ruby/stringio" s.licenses = ["Ruby", "BSD-2-Clause"] - s.required_ruby_version = ">= 2.5" + s.required_ruby_version = ">= 2.7" s.summary = "Pseudo IO on String" # s.cert_chain = %w[certs/nobu.pem] |