summaryrefslogtreecommitdiff
path: root/lib/net/http
diff options
context:
space:
mode:
-rw-r--r--lib/net/http/backward.rb1
-rw-r--r--lib/net/http/exceptions.rb1
-rw-r--r--lib/net/http/generic_request.rb1
-rw-r--r--lib/net/http/header.rb1
-rw-r--r--lib/net/http/proxy_delta.rb1
-rw-r--r--lib/net/http/request.rb1
-rw-r--r--lib/net/http/requests.rb1
-rw-r--r--lib/net/http/response.rb1
-rw-r--r--lib/net/http/responses.rb1
9 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,4 @@
# for backward compatibility
# :enddoc:
@@ -1,3 +1,4 @@
# Net::HTTP exception class.
# You cannot use Net::HTTPExceptions directly; instead, you must use
# its subclasses.
@@ -1,3 +1,4 @@
# HTTPGenericRequest is the parent of the HTTPRequest class.
# Do not use this directly; use a subclass of HTTPRequest.
#
@@ -1,3 +1,4 @@
# The HTTPHeader module defines methods for reading and writing
# HTTP headers.
#
@@ -1,3 +1,4 @@
module Net::HTTP::ProxyDelta #:nodoc:
private
@@ -1,3 +1,4 @@
# HTTP request class.
# This class wraps together the request header and the request path.
# You cannot use this class directly. Instead, you should use one of its
@@ -1,3 +1,4 @@
#
# HTTP/1.1 methods --- RFC2616
#
@@ -1,3 +1,4 @@
# HTTP response class.
#
# This class wraps together the response header and the response body (the
@@ -1,3 +1,4 @@
# :stopdoc:
class Net::HTTPUnknownResponse < Net::HTTPResponse
HAS_BODY = true