Skip to content

Commit

Permalink
Fixed required_ruby_version
Browse files Browse the repository at this point in the history
Before 3.0.0, io-wait has not been gemified.
  • Loading branch information
nobu committed Mar 5, 2021
1 parent 0599f6d commit 6fed3da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io-wait.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,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(">= 2.3.0")
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
Expand Down

2 comments on commit 6fed3da

@stanhu
Copy link

@stanhu stanhu commented on 6fed3da Oct 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we consider reverting this change? This caused ruby/net-imap#24.

@nobu
Copy link
Member Author

@nobu nobu commented on 6fed3da Oct 22, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now 2eb3841 allows 2.6.

Please sign in to comment.