From 15bd6c405e7df47f03f3405b6070d7455ad04ed7 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Mon, 10 Nov 2025 08:14:37 -0700 Subject: [PATCH] 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 --- trmnl-api.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trmnl-api.gemspec b/trmnl-api.gemspec index 823dd37..c3f7380 100644 --- a/trmnl-api.gemspec +++ b/trmnl-api.gemspec @@ -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"