mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
30 lines
723 B
Ruby
30 lines
723 B
Ruby
# frozen_string_literal: false
|
|
# 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::HTTPResponseReceiver = Net::HTTPResponse
|
|
|
|
module Net
|
|
HTTPResponceReceiver = HTTPResponse # Typo since 2001
|
|
deprecate_constant :HTTPResponceReceiver
|
|
end
|