From d5353635ad1c74bea90c71e7bfea798f59623fef Mon Sep 17 00:00:00 2001 From: Jahfer Husain Date: Thu, 28 Oct 2021 13:59:27 -0400 Subject: [PATCH] Restrict gem to < Ruby 3.0 Until #87 is fixed, this gem produces unreliable results under Ruby 3. --- rotoscope.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rotoscope.gemspec b/rotoscope.gemspec index 5457952..d7b7b17 100644 --- a/rotoscope.gemspec +++ b/rotoscope.gemspec @@ -19,7 +19,7 @@ Gem::Specification.new do |s| s.files = %x(git ls-files -z).split("\x0").reject do |f| f.match(%r{^(test)/}) end - s.required_ruby_version = ">= 2.2.0" + s.required_ruby_version = ">= 2.2.0", "< 3" s.extensions = ["ext/rotoscope/extconf.rb"] s.add_development_dependency("minitest", "~> 5.0")