summaryrefslogtreecommitdiff
path: root/lib/timeout.gemspec
diff options
context:
space:
mode:
authorBenoit Daloze <[email protected]>2023-07-03 11:53:55 +0200
committergit <[email protected]>2023-07-03 09:57:07 +0000
commit4430b73cee4aaa4f203e14368d93b3297505c63e (patch)
tree4f5733932ae5c64ab84e044be1b43d41510d4406 /lib/timeout.gemspec
parent8281f8fd067017ac909bd16a66e64cfdfed06bc8 (diff)
[ruby/timeout] Require Ruby >= 2.6 for the timeout gem
* The test suite fails on 2.5. * See https://github.com/ruby/timeout/pull/35 https://github.com/ruby/timeout/commit/03873a9237
Diffstat (limited to 'lib/timeout.gemspec')
-rw-r--r--lib/timeout.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/timeout.gemspec b/lib/timeout.gemspec
index 4b52e4445f..258517c5f8 100644
--- a/lib/timeout.gemspec
+++ b/lib/timeout.gemspec
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
- spec.required_ruby_version = '>= 2.5.0'
+ spec.required_ruby_version = '>= 2.6.0'
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|