From 3ffbe73aaa831176777c7f52e90670ee6d5c82eb Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Tue, 31 Mar 2026 11:09:46 +0900 Subject: [PATCH] Remove version constraint for jruby-openssl "~> 0.14" is equivalent to ">= 0.14, < 1". Since the openssl gem is an empty stub on JRuby, there is no good reason to specify version bounds on jruby-openssl. [ky: commit message] Co-authored-by: Kazuki Yamaguchi --- openssl.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssl.gemspec b/openssl.gemspec index c594c6f17..3000811a1 100644 --- a/openssl.gemspec +++ b/openssl.gemspec @@ -11,7 +11,7 @@ Gem::Specification.new do |spec| if Gem::Platform === spec.platform and spec.platform =~ 'java' or RUBY_ENGINE == 'jruby' spec.platform = "java" spec.files = [] - spec.add_runtime_dependency('jruby-openssl', '~> 0.14') + spec.add_runtime_dependency('jruby-openssl') else spec.files = Dir.glob(["lib/**/*.rb", "ext/**/*.{c,h,rb}", "*.md"], base: File.expand_path("..", __FILE__)) + ["BSDL", "COPYING"]