We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c87774 commit c4c89e4Copy full SHA for c4c89e4
2 files changed
lib/jopenssl/load.rb
@@ -3,11 +3,11 @@
3
require 'java'
4
require 'jopenssl/version'
5
6
-warn "JRuby #{JRUBY_VERSION} is not supported by jruby-openssl #{Jopenssl::VERSION}" if JRUBY_VERSION < '1.7.20'
+warn "JRuby #{JRUBY_VERSION} is not supported by jruby-openssl #{JOpenSSL::VERSION}" if JRUBY_VERSION < '1.7.20'
7
8
# NOTE: assuming user does pull in BC .jars from somewhere else on the CP
9
unless ENV_JAVA['jruby.openssl.load.jars'].eql?('false')
10
- version = Jopenssl::BOUNCY_CASTLE_VERSION
+ version = JOpenSSL::BOUNCY_CASTLE_VERSION
11
bc_jars = nil
12
begin
13
require 'jar-dependencies'
lib/jopenssl/version.rb
@@ -1,4 +1,5 @@
1
-module Jopenssl
+module JOpenSSL
2
VERSION = '0.10.1.dev'
BOUNCY_CASTLE_VERSION = '1.59'
end
+Jopenssl = JOpenSSL
0 commit comments