We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a90ffba commit 4cd500fCopy full SHA for 4cd500f
CHANGELOG.md
@@ -11,6 +11,7 @@ Bug fixes:
11
* Combining multiple `**` arguments containing duplicate keys produced
12
an incorrect hash. This has now been fixed (#1469).
13
* `IO#read_nonblock` now returns the passed buffer object, if one is supplied.
14
+* Worked out autoloading issue (#1614).
15
16
New features:
17
lib/mri/net/http.rb
@@ -22,7 +22,13 @@
22
23
require_relative 'protocol'
24
require 'uri'
25
-autoload :OpenSSL, 'openssl'
+
26
+if RUBY_ENGINE == 'truffleruby'
27
+ # See tagged specs around autoload
28
+ require 'openssl'
29
+else
30
+ autoload :OpenSSL, 'openssl'
31
+end
32
33
module Net #:nodoc:
34
0 commit comments