[ruby/io-wait] Bump up the required ruby version

io-wait became a default gem at ruby 3.0.
Even it can be installed on earlier versions, but the standard library
will be loaded instead of the installed gem.

https://github.com/ruby/io-wait/commit/15b96736cd
This commit is contained in:
Nobuyoshi Nakada 2025-07-09 15:53:56 +09:00 committed by git
parent 25afe7ef64
commit ddeefa2e7e

View File

@ -10,6 +10,7 @@ Gem::Specification.new do |spec|
spec.description = %q{Waits until IO is readable or writable without blocking.}
spec.homepage = "https://github.com/ruby/io-wait"
spec.licenses = ["Ruby", "BSD-2-Clause"]
spec.required_ruby_version = Gem::Requirement.new(">= 3.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage