ruby-changes:54661
From: nagachika <ko1@a...>
Date: Sun, 20 Jan 2019 13:49:45 +0900 (JST)
Subject: [ruby-changes:54661] nagachika:r66877 (ruby_2_5): merge revision(s) 66401: [Backport #15412]
nagachika 2019-01-20 13:49:40 +0900 (Sun, 20 Jan 2019) New Revision: 66877 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=66877 Log: merge revision(s) 66401: [Backport #15412] Move autoload to toplevel So that classes which uses Net::HTTP with https can use OpenSSL namespace for example exception classes like OpenSSL::SSL::SSLError. Modified directories: branches/ruby_2_5/ Modified files: branches/ruby_2_5/lib/net/http.rb branches/ruby_2_5/version.h Index: ruby_2_5/lib/net/http.rb =================================================================== --- ruby_2_5/lib/net/http.rb (revision 66876) +++ ruby_2_5/lib/net/http.rb (revision 66877) @@ -22,9 +22,9 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_5/lib/net/http.rb#L22 require_relative 'protocol' require 'uri' +autoload :OpenSSL, 'openssl' module Net #:nodoc: - autoload :OpenSSL, 'openssl' # :stopdoc: class HTTPBadResponse < StandardError; end Index: ruby_2_5/version.h =================================================================== --- ruby_2_5/version.h (revision 66876) +++ ruby_2_5/version.h (revision 66877) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_5/version.h#L1 #define RUBY_VERSION "2.5.4" #define RUBY_RELEASE_DATE "2019-01-20" -#define RUBY_PATCHLEVEL 132 +#define RUBY_PATCHLEVEL 133 #define RUBY_RELEASE_YEAR 2019 #define RUBY_RELEASE_MONTH 1 Index: ruby_2_5 =================================================================== --- ruby_2_5 (revision 66876) +++ ruby_2_5 (revision 66877) Property changes on: ruby_2_5 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /trunk:r66401 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/