File tree Expand file tree Collapse file tree 2 files changed +317
-41
lines changed Expand file tree Collapse file tree 2 files changed +317
-41
lines changed Original file line number Diff line number Diff line change 4
4
# it wraps together the request path and the request headers.
5
5
#
6
6
# The class should not be used directly;
7
- # instead you should use its subclasses:
7
+ # instead you should use its subclasses.
8
8
#
9
- # - \Net::HTTP::Get
10
- # - \Net::HTTP::Head
11
- # - \Net::HTTP::Post
12
- # - \Net::HTTP::Delete
13
- # - \Net::HTTP::Options
14
- # - \Net::HTTP::Trace
15
- # - \Net::HTTP::Patch
16
- # - \Net::HTTP::Put
17
- # - \Net::HTTP::Copy
18
- # - \Net::HTTP::Lock
19
- # - \Net::HTTP::Mkcol
20
- # - \Net::HTTP::Move
21
- # - \Net::HTTP::Propfind
22
- # - \Net::HTTP::Proppatch
23
- # - \Net::HTTP::Unlock
9
+ # Subclasses for HTTP requests:
10
+ #
11
+ # - Net::HTTP::Get
12
+ # - Net::HTTP::Head
13
+ # - Net::HTTP::Post
14
+ # - Net::HTTP::Put
15
+ # - Net::HTTP::Delete
16
+ # - Net::HTTP::Options
17
+ # - Net::HTTP::Trace
18
+ # - Net::HTTP::Patch
19
+ #
20
+ # Subclasses for WebDAV requests:
21
+ #
22
+ # - Net::HTTP::Propfind
23
+ # - Net::HTTP::Proppatch
24
+ # - Net::HTTP::Mkcol
25
+ # - Net::HTTP::Copy
26
+ # - Net::HTTP::Move
27
+ # - Net::HTTP::Lock
28
+ # - Net::HTTP::Unlock
24
29
#
25
30
class Net ::HTTPRequest < Net ::HTTPGenericRequest
26
31
# Creates an HTTP request object for +path+.
@@ -36,4 +41,3 @@ def initialize(path, initheader = nil)
36
41
path , initheader
37
42
end
38
43
end
39
-
You can’t perform that action at this time.
0 commit comments