mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d212a89c38
fix backwards-compatibility with ancient Net::HTTP. [Bug #6889] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36810 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
25 lines
578 B
Ruby
25 lines
578 B
Ruby
# for backward compatibility
|
|
|
|
# :enddoc:
|
|
|
|
class Net::HTTP
|
|
ProxyMod = ProxyDelta
|
|
end
|
|
|
|
module Net
|
|
HTTPSession = Net::HTTP
|
|
end
|
|
|
|
module Net::NetPrivate
|
|
HTTPRequest = ::Net::HTTPRequest
|
|
end
|
|
|
|
Net::HTTPInformationCode = Net::HTTPInformation
|
|
Net::HTTPSuccessCode = Net::HTTPSuccess
|
|
Net::HTTPRedirectionCode = Net::HTTPRedirection
|
|
Net::HTTPRetriableCode = Net::HTTPRedirection
|
|
Net::HTTPClientErrorCode = Net::HTTPClientError
|
|
Net::HTTPFatalErrorCode = Net::HTTPClientError
|
|
Net::HTTPServerErrorCode = Net::HTTPServerError
|
|
Net::HTTPResponceReceiver = Net::HTTPResponse
|
|
|