Fixed gem specification Ruby version requirement

Necessary to ensure we can run on Ruby 3.4.0 and higher since Ruby 4.0.0 is scheduled to drop on Christmas Day.

Milestone: patch
This commit is contained in:
Brooke Kuhlmann
2025-11-10 08:14:37 -07:00
parent 735fa48ba0
commit 15bd6c405e
+1 -1
View File
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
spec.signing_key = Gem.default_key_path
spec.cert_chain = [Gem.default_cert_path]
spec.required_ruby_version = "~> 3.4"
spec.required_ruby_version = ">= 3.4"
spec.add_dependency "cogger", "~> 1.4"
spec.add_dependency "containable", "~> 1.2"