Skip to content

Commit 3ffbe73

Browse files
hsbtrhenium
andcommitted
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 <k@rhe.jp>
1 parent 10ae5ca commit 3ffbe73

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openssl.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
1111
if Gem::Platform === spec.platform and spec.platform =~ 'java' or RUBY_ENGINE == 'jruby'
1212
spec.platform = "java"
1313
spec.files = []
14-
spec.add_runtime_dependency('jruby-openssl', '~> 0.14')
14+
spec.add_runtime_dependency('jruby-openssl')
1515
else
1616
spec.files = Dir.glob(["lib/**/*.rb", "ext/**/*.{c,h,rb}", "*.md"], base: File.expand_path("..", __FILE__)) +
1717
["BSDL", "COPYING"]

0 commit comments

Comments
 (0)