net-http 0.4.1 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.document +4 -0
- data/{LICENSE.txt → BSDL} +3 -3
- data/COPYING +56 -0
- data/README.md +2 -1
- data/lib/net/http/exceptions.rb +2 -1
- data/lib/net/http/generic_request.rb +30 -15
- data/lib/net/http/header.rb +9 -5
- data/lib/net/http/requests.rb +20 -1
- data/lib/net/http/response.rb +2 -1
- data/lib/net/http/responses.rb +70 -2
- data/lib/net/http.rb +189 -77
- metadata +10 -16
- data/Gemfile +0 -8
- data/Rakefile +0 -10
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/lib/net/http/backward.rb +0 -40
- data/net-http.gemspec +0 -39
data/lib/net/http/responses.rb
CHANGED
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
module Net
|
|
6
6
|
|
|
7
|
+
# Unknown HTTP response
|
|
7
8
|
class HTTPUnknownResponse < HTTPResponse
|
|
9
|
+
# :stopdoc:
|
|
8
10
|
HAS_BODY = true
|
|
9
11
|
EXCEPTION_TYPE = HTTPError #
|
|
10
12
|
end
|
|
@@ -19,6 +21,7 @@ module Net
|
|
|
19
21
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#1xx_informational_response].
|
|
20
22
|
#
|
|
21
23
|
class HTTPInformation < HTTPResponse
|
|
24
|
+
# :stopdoc:
|
|
22
25
|
HAS_BODY = false
|
|
23
26
|
EXCEPTION_TYPE = HTTPError #
|
|
24
27
|
end
|
|
@@ -34,6 +37,7 @@ module Net
|
|
|
34
37
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#2xx_success].
|
|
35
38
|
#
|
|
36
39
|
class HTTPSuccess < HTTPResponse
|
|
40
|
+
# :stopdoc:
|
|
37
41
|
HAS_BODY = true
|
|
38
42
|
EXCEPTION_TYPE = HTTPError #
|
|
39
43
|
end
|
|
@@ -49,6 +53,7 @@ module Net
|
|
|
49
53
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#3xx_redirection].
|
|
50
54
|
#
|
|
51
55
|
class HTTPRedirection < HTTPResponse
|
|
56
|
+
# :stopdoc:
|
|
52
57
|
HAS_BODY = true
|
|
53
58
|
EXCEPTION_TYPE = HTTPRetriableError #
|
|
54
59
|
end
|
|
@@ -63,6 +68,7 @@ module Net
|
|
|
63
68
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_client_errors].
|
|
64
69
|
#
|
|
65
70
|
class HTTPClientError < HTTPResponse
|
|
71
|
+
# :stopdoc:
|
|
66
72
|
HAS_BODY = true
|
|
67
73
|
EXCEPTION_TYPE = HTTPClientException #
|
|
68
74
|
end
|
|
@@ -77,6 +83,7 @@ module Net
|
|
|
77
83
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#5xx_server_errors].
|
|
78
84
|
#
|
|
79
85
|
class HTTPServerError < HTTPResponse
|
|
86
|
+
# :stopdoc:
|
|
80
87
|
HAS_BODY = true
|
|
81
88
|
EXCEPTION_TYPE = HTTPFatalError #
|
|
82
89
|
end
|
|
@@ -94,6 +101,7 @@ module Net
|
|
|
94
101
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#100].
|
|
95
102
|
#
|
|
96
103
|
class HTTPContinue < HTTPInformation
|
|
104
|
+
# :stopdoc:
|
|
97
105
|
HAS_BODY = false
|
|
98
106
|
end
|
|
99
107
|
|
|
@@ -111,6 +119,7 @@ module Net
|
|
|
111
119
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#101].
|
|
112
120
|
#
|
|
113
121
|
class HTTPSwitchProtocol < HTTPInformation
|
|
122
|
+
# :stopdoc:
|
|
114
123
|
HAS_BODY = false
|
|
115
124
|
end
|
|
116
125
|
|
|
@@ -127,6 +136,7 @@ module Net
|
|
|
127
136
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#102].
|
|
128
137
|
#
|
|
129
138
|
class HTTPProcessing < HTTPInformation
|
|
139
|
+
# :stopdoc:
|
|
130
140
|
HAS_BODY = false
|
|
131
141
|
end
|
|
132
142
|
|
|
@@ -145,6 +155,7 @@ module Net
|
|
|
145
155
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#103].
|
|
146
156
|
#
|
|
147
157
|
class HTTPEarlyHints < HTTPInformation
|
|
158
|
+
# :stopdoc:
|
|
148
159
|
HAS_BODY = false
|
|
149
160
|
end
|
|
150
161
|
|
|
@@ -162,6 +173,7 @@ module Net
|
|
|
162
173
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#200].
|
|
163
174
|
#
|
|
164
175
|
class HTTPOK < HTTPSuccess
|
|
176
|
+
# :stopdoc:
|
|
165
177
|
HAS_BODY = true
|
|
166
178
|
end
|
|
167
179
|
|
|
@@ -179,6 +191,7 @@ module Net
|
|
|
179
191
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#201].
|
|
180
192
|
#
|
|
181
193
|
class HTTPCreated < HTTPSuccess
|
|
194
|
+
# :stopdoc:
|
|
182
195
|
HAS_BODY = true
|
|
183
196
|
end
|
|
184
197
|
|
|
@@ -196,6 +209,7 @@ module Net
|
|
|
196
209
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#202].
|
|
197
210
|
#
|
|
198
211
|
class HTTPAccepted < HTTPSuccess
|
|
212
|
+
# :stopdoc:
|
|
199
213
|
HAS_BODY = true
|
|
200
214
|
end
|
|
201
215
|
|
|
@@ -215,6 +229,7 @@ module Net
|
|
|
215
229
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#203].
|
|
216
230
|
#
|
|
217
231
|
class HTTPNonAuthoritativeInformation < HTTPSuccess
|
|
232
|
+
# :stopdoc:
|
|
218
233
|
HAS_BODY = true
|
|
219
234
|
end
|
|
220
235
|
|
|
@@ -232,6 +247,7 @@ module Net
|
|
|
232
247
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#204].
|
|
233
248
|
#
|
|
234
249
|
class HTTPNoContent < HTTPSuccess
|
|
250
|
+
# :stopdoc:
|
|
235
251
|
HAS_BODY = false
|
|
236
252
|
end
|
|
237
253
|
|
|
@@ -250,6 +266,7 @@ module Net
|
|
|
250
266
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#205].
|
|
251
267
|
#
|
|
252
268
|
class HTTPResetContent < HTTPSuccess
|
|
269
|
+
# :stopdoc:
|
|
253
270
|
HAS_BODY = false
|
|
254
271
|
end
|
|
255
272
|
|
|
@@ -268,6 +285,7 @@ module Net
|
|
|
268
285
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#206].
|
|
269
286
|
#
|
|
270
287
|
class HTTPPartialContent < HTTPSuccess
|
|
288
|
+
# :stopdoc:
|
|
271
289
|
HAS_BODY = true
|
|
272
290
|
end
|
|
273
291
|
|
|
@@ -285,6 +303,7 @@ module Net
|
|
|
285
303
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#207].
|
|
286
304
|
#
|
|
287
305
|
class HTTPMultiStatus < HTTPSuccess
|
|
306
|
+
# :stopdoc:
|
|
288
307
|
HAS_BODY = true
|
|
289
308
|
end
|
|
290
309
|
|
|
@@ -304,6 +323,7 @@ module Net
|
|
|
304
323
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#208].
|
|
305
324
|
#
|
|
306
325
|
class HTTPAlreadyReported < HTTPSuccess
|
|
326
|
+
# :stopdoc:
|
|
307
327
|
HAS_BODY = true
|
|
308
328
|
end
|
|
309
329
|
|
|
@@ -321,6 +341,7 @@ module Net
|
|
|
321
341
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#226].
|
|
322
342
|
#
|
|
323
343
|
class HTTPIMUsed < HTTPSuccess
|
|
344
|
+
# :stopdoc:
|
|
324
345
|
HAS_BODY = true
|
|
325
346
|
end
|
|
326
347
|
|
|
@@ -338,6 +359,7 @@ module Net
|
|
|
338
359
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#300].
|
|
339
360
|
#
|
|
340
361
|
class HTTPMultipleChoices < HTTPRedirection
|
|
362
|
+
# :stopdoc:
|
|
341
363
|
HAS_BODY = true
|
|
342
364
|
end
|
|
343
365
|
HTTPMultipleChoice = HTTPMultipleChoices
|
|
@@ -356,6 +378,7 @@ module Net
|
|
|
356
378
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#301].
|
|
357
379
|
#
|
|
358
380
|
class HTTPMovedPermanently < HTTPRedirection
|
|
381
|
+
# :stopdoc:
|
|
359
382
|
HAS_BODY = true
|
|
360
383
|
end
|
|
361
384
|
|
|
@@ -373,6 +396,7 @@ module Net
|
|
|
373
396
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#302].
|
|
374
397
|
#
|
|
375
398
|
class HTTPFound < HTTPRedirection
|
|
399
|
+
# :stopdoc:
|
|
376
400
|
HAS_BODY = true
|
|
377
401
|
end
|
|
378
402
|
HTTPMovedTemporarily = HTTPFound
|
|
@@ -390,6 +414,7 @@ module Net
|
|
|
390
414
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#303].
|
|
391
415
|
#
|
|
392
416
|
class HTTPSeeOther < HTTPRedirection
|
|
417
|
+
# :stopdoc:
|
|
393
418
|
HAS_BODY = true
|
|
394
419
|
end
|
|
395
420
|
|
|
@@ -407,6 +432,7 @@ module Net
|
|
|
407
432
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#304].
|
|
408
433
|
#
|
|
409
434
|
class HTTPNotModified < HTTPRedirection
|
|
435
|
+
# :stopdoc:
|
|
410
436
|
HAS_BODY = false
|
|
411
437
|
end
|
|
412
438
|
|
|
@@ -423,6 +449,7 @@ module Net
|
|
|
423
449
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#305].
|
|
424
450
|
#
|
|
425
451
|
class HTTPUseProxy < HTTPRedirection
|
|
452
|
+
# :stopdoc:
|
|
426
453
|
HAS_BODY = false
|
|
427
454
|
end
|
|
428
455
|
|
|
@@ -440,6 +467,7 @@ module Net
|
|
|
440
467
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#307].
|
|
441
468
|
#
|
|
442
469
|
class HTTPTemporaryRedirect < HTTPRedirection
|
|
470
|
+
# :stopdoc:
|
|
443
471
|
HAS_BODY = true
|
|
444
472
|
end
|
|
445
473
|
|
|
@@ -456,6 +484,7 @@ module Net
|
|
|
456
484
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#308].
|
|
457
485
|
#
|
|
458
486
|
class HTTPPermanentRedirect < HTTPRedirection
|
|
487
|
+
# :stopdoc:
|
|
459
488
|
HAS_BODY = true
|
|
460
489
|
end
|
|
461
490
|
|
|
@@ -472,6 +501,7 @@ module Net
|
|
|
472
501
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#400].
|
|
473
502
|
#
|
|
474
503
|
class HTTPBadRequest < HTTPClientError
|
|
504
|
+
# :stopdoc:
|
|
475
505
|
HAS_BODY = true
|
|
476
506
|
end
|
|
477
507
|
|
|
@@ -488,6 +518,7 @@ module Net
|
|
|
488
518
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#401].
|
|
489
519
|
#
|
|
490
520
|
class HTTPUnauthorized < HTTPClientError
|
|
521
|
+
# :stopdoc:
|
|
491
522
|
HAS_BODY = true
|
|
492
523
|
end
|
|
493
524
|
|
|
@@ -504,6 +535,7 @@ module Net
|
|
|
504
535
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#402].
|
|
505
536
|
#
|
|
506
537
|
class HTTPPaymentRequired < HTTPClientError
|
|
538
|
+
# :stopdoc:
|
|
507
539
|
HAS_BODY = true
|
|
508
540
|
end
|
|
509
541
|
|
|
@@ -521,6 +553,7 @@ module Net
|
|
|
521
553
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#403].
|
|
522
554
|
#
|
|
523
555
|
class HTTPForbidden < HTTPClientError
|
|
556
|
+
# :stopdoc:
|
|
524
557
|
HAS_BODY = true
|
|
525
558
|
end
|
|
526
559
|
|
|
@@ -537,6 +570,7 @@ module Net
|
|
|
537
570
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#404].
|
|
538
571
|
#
|
|
539
572
|
class HTTPNotFound < HTTPClientError
|
|
573
|
+
# :stopdoc:
|
|
540
574
|
HAS_BODY = true
|
|
541
575
|
end
|
|
542
576
|
|
|
@@ -553,6 +587,7 @@ module Net
|
|
|
553
587
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#405].
|
|
554
588
|
#
|
|
555
589
|
class HTTPMethodNotAllowed < HTTPClientError
|
|
590
|
+
# :stopdoc:
|
|
556
591
|
HAS_BODY = true
|
|
557
592
|
end
|
|
558
593
|
|
|
@@ -570,6 +605,7 @@ module Net
|
|
|
570
605
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#406].
|
|
571
606
|
#
|
|
572
607
|
class HTTPNotAcceptable < HTTPClientError
|
|
608
|
+
# :stopdoc:
|
|
573
609
|
HAS_BODY = true
|
|
574
610
|
end
|
|
575
611
|
|
|
@@ -586,6 +622,7 @@ module Net
|
|
|
586
622
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#407].
|
|
587
623
|
#
|
|
588
624
|
class HTTPProxyAuthenticationRequired < HTTPClientError
|
|
625
|
+
# :stopdoc:
|
|
589
626
|
HAS_BODY = true
|
|
590
627
|
end
|
|
591
628
|
|
|
@@ -602,6 +639,7 @@ module Net
|
|
|
602
639
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#408].
|
|
603
640
|
#
|
|
604
641
|
class HTTPRequestTimeout < HTTPClientError
|
|
642
|
+
# :stopdoc:
|
|
605
643
|
HAS_BODY = true
|
|
606
644
|
end
|
|
607
645
|
HTTPRequestTimeOut = HTTPRequestTimeout
|
|
@@ -619,6 +657,7 @@ module Net
|
|
|
619
657
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#409].
|
|
620
658
|
#
|
|
621
659
|
class HTTPConflict < HTTPClientError
|
|
660
|
+
# :stopdoc:
|
|
622
661
|
HAS_BODY = true
|
|
623
662
|
end
|
|
624
663
|
|
|
@@ -636,6 +675,7 @@ module Net
|
|
|
636
675
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#410].
|
|
637
676
|
#
|
|
638
677
|
class HTTPGone < HTTPClientError
|
|
678
|
+
# :stopdoc:
|
|
639
679
|
HAS_BODY = true
|
|
640
680
|
end
|
|
641
681
|
|
|
@@ -653,6 +693,7 @@ module Net
|
|
|
653
693
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#411].
|
|
654
694
|
#
|
|
655
695
|
class HTTPLengthRequired < HTTPClientError
|
|
696
|
+
# :stopdoc:
|
|
656
697
|
HAS_BODY = true
|
|
657
698
|
end
|
|
658
699
|
|
|
@@ -670,6 +711,7 @@ module Net
|
|
|
670
711
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#412].
|
|
671
712
|
#
|
|
672
713
|
class HTTPPreconditionFailed < HTTPClientError
|
|
714
|
+
# :stopdoc:
|
|
673
715
|
HAS_BODY = true
|
|
674
716
|
end
|
|
675
717
|
|
|
@@ -686,6 +728,7 @@ module Net
|
|
|
686
728
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#413].
|
|
687
729
|
#
|
|
688
730
|
class HTTPPayloadTooLarge < HTTPClientError
|
|
731
|
+
# :stopdoc:
|
|
689
732
|
HAS_BODY = true
|
|
690
733
|
end
|
|
691
734
|
HTTPRequestEntityTooLarge = HTTPPayloadTooLarge
|
|
@@ -703,6 +746,7 @@ module Net
|
|
|
703
746
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#414].
|
|
704
747
|
#
|
|
705
748
|
class HTTPURITooLong < HTTPClientError
|
|
749
|
+
# :stopdoc:
|
|
706
750
|
HAS_BODY = true
|
|
707
751
|
end
|
|
708
752
|
HTTPRequestURITooLong = HTTPURITooLong
|
|
@@ -721,6 +765,7 @@ module Net
|
|
|
721
765
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#415].
|
|
722
766
|
#
|
|
723
767
|
class HTTPUnsupportedMediaType < HTTPClientError
|
|
768
|
+
# :stopdoc:
|
|
724
769
|
HAS_BODY = true
|
|
725
770
|
end
|
|
726
771
|
|
|
@@ -737,6 +782,7 @@ module Net
|
|
|
737
782
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#416].
|
|
738
783
|
#
|
|
739
784
|
class HTTPRangeNotSatisfiable < HTTPClientError
|
|
785
|
+
# :stopdoc:
|
|
740
786
|
HAS_BODY = true
|
|
741
787
|
end
|
|
742
788
|
HTTPRequestedRangeNotSatisfiable = HTTPRangeNotSatisfiable
|
|
@@ -754,6 +800,7 @@ module Net
|
|
|
754
800
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#417].
|
|
755
801
|
#
|
|
756
802
|
class HTTPExpectationFailed < HTTPClientError
|
|
803
|
+
# :stopdoc:
|
|
757
804
|
HAS_BODY = true
|
|
758
805
|
end
|
|
759
806
|
|
|
@@ -774,6 +821,7 @@ module Net
|
|
|
774
821
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#421].
|
|
775
822
|
#
|
|
776
823
|
class HTTPMisdirectedRequest < HTTPClientError
|
|
824
|
+
# :stopdoc:
|
|
777
825
|
HAS_BODY = true
|
|
778
826
|
end
|
|
779
827
|
|
|
@@ -790,6 +838,7 @@ module Net
|
|
|
790
838
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#422].
|
|
791
839
|
#
|
|
792
840
|
class HTTPUnprocessableEntity < HTTPClientError
|
|
841
|
+
# :stopdoc:
|
|
793
842
|
HAS_BODY = true
|
|
794
843
|
end
|
|
795
844
|
|
|
@@ -805,6 +854,7 @@ module Net
|
|
|
805
854
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#423].
|
|
806
855
|
#
|
|
807
856
|
class HTTPLocked < HTTPClientError
|
|
857
|
+
# :stopdoc:
|
|
808
858
|
HAS_BODY = true
|
|
809
859
|
end
|
|
810
860
|
|
|
@@ -821,6 +871,7 @@ module Net
|
|
|
821
871
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#424].
|
|
822
872
|
#
|
|
823
873
|
class HTTPFailedDependency < HTTPClientError
|
|
874
|
+
# :stopdoc:
|
|
824
875
|
HAS_BODY = true
|
|
825
876
|
end
|
|
826
877
|
|
|
@@ -840,6 +891,7 @@ module Net
|
|
|
840
891
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#426].
|
|
841
892
|
#
|
|
842
893
|
class HTTPUpgradeRequired < HTTPClientError
|
|
894
|
+
# :stopdoc:
|
|
843
895
|
HAS_BODY = true
|
|
844
896
|
end
|
|
845
897
|
|
|
@@ -856,6 +908,7 @@ module Net
|
|
|
856
908
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#428].
|
|
857
909
|
#
|
|
858
910
|
class HTTPPreconditionRequired < HTTPClientError
|
|
911
|
+
# :stopdoc:
|
|
859
912
|
HAS_BODY = true
|
|
860
913
|
end
|
|
861
914
|
|
|
@@ -872,6 +925,7 @@ module Net
|
|
|
872
925
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#429].
|
|
873
926
|
#
|
|
874
927
|
class HTTPTooManyRequests < HTTPClientError
|
|
928
|
+
# :stopdoc:
|
|
875
929
|
HAS_BODY = true
|
|
876
930
|
end
|
|
877
931
|
|
|
@@ -889,6 +943,7 @@ module Net
|
|
|
889
943
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#431].
|
|
890
944
|
#
|
|
891
945
|
class HTTPRequestHeaderFieldsTooLarge < HTTPClientError
|
|
946
|
+
# :stopdoc:
|
|
892
947
|
HAS_BODY = true
|
|
893
948
|
end
|
|
894
949
|
|
|
@@ -906,6 +961,7 @@ module Net
|
|
|
906
961
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#451].
|
|
907
962
|
#
|
|
908
963
|
class HTTPUnavailableForLegalReasons < HTTPClientError
|
|
964
|
+
# :stopdoc:
|
|
909
965
|
HAS_BODY = true
|
|
910
966
|
end
|
|
911
967
|
# 444 No Response - Nginx
|
|
@@ -926,6 +982,7 @@ module Net
|
|
|
926
982
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#500].
|
|
927
983
|
#
|
|
928
984
|
class HTTPInternalServerError < HTTPServerError
|
|
985
|
+
# :stopdoc:
|
|
929
986
|
HAS_BODY = true
|
|
930
987
|
end
|
|
931
988
|
|
|
@@ -943,6 +1000,7 @@ module Net
|
|
|
943
1000
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#501].
|
|
944
1001
|
#
|
|
945
1002
|
class HTTPNotImplemented < HTTPServerError
|
|
1003
|
+
# :stopdoc:
|
|
946
1004
|
HAS_BODY = true
|
|
947
1005
|
end
|
|
948
1006
|
|
|
@@ -960,6 +1018,7 @@ module Net
|
|
|
960
1018
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#502].
|
|
961
1019
|
#
|
|
962
1020
|
class HTTPBadGateway < HTTPServerError
|
|
1021
|
+
# :stopdoc:
|
|
963
1022
|
HAS_BODY = true
|
|
964
1023
|
end
|
|
965
1024
|
|
|
@@ -977,6 +1036,7 @@ module Net
|
|
|
977
1036
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#503].
|
|
978
1037
|
#
|
|
979
1038
|
class HTTPServiceUnavailable < HTTPServerError
|
|
1039
|
+
# :stopdoc:
|
|
980
1040
|
HAS_BODY = true
|
|
981
1041
|
end
|
|
982
1042
|
|
|
@@ -994,6 +1054,7 @@ module Net
|
|
|
994
1054
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#504].
|
|
995
1055
|
#
|
|
996
1056
|
class HTTPGatewayTimeout < HTTPServerError
|
|
1057
|
+
# :stopdoc:
|
|
997
1058
|
HAS_BODY = true
|
|
998
1059
|
end
|
|
999
1060
|
HTTPGatewayTimeOut = HTTPGatewayTimeout
|
|
@@ -1011,6 +1072,7 @@ module Net
|
|
|
1011
1072
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#505].
|
|
1012
1073
|
#
|
|
1013
1074
|
class HTTPVersionNotSupported < HTTPServerError
|
|
1075
|
+
# :stopdoc:
|
|
1014
1076
|
HAS_BODY = true
|
|
1015
1077
|
end
|
|
1016
1078
|
|
|
@@ -1027,6 +1089,7 @@ module Net
|
|
|
1027
1089
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#506].
|
|
1028
1090
|
#
|
|
1029
1091
|
class HTTPVariantAlsoNegotiates < HTTPServerError
|
|
1092
|
+
# :stopdoc:
|
|
1030
1093
|
HAS_BODY = true
|
|
1031
1094
|
end
|
|
1032
1095
|
|
|
@@ -1043,6 +1106,7 @@ module Net
|
|
|
1043
1106
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#507].
|
|
1044
1107
|
#
|
|
1045
1108
|
class HTTPInsufficientStorage < HTTPServerError
|
|
1109
|
+
# :stopdoc:
|
|
1046
1110
|
HAS_BODY = true
|
|
1047
1111
|
end
|
|
1048
1112
|
|
|
@@ -1059,6 +1123,7 @@ module Net
|
|
|
1059
1123
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#508].
|
|
1060
1124
|
#
|
|
1061
1125
|
class HTTPLoopDetected < HTTPServerError
|
|
1126
|
+
# :stopdoc:
|
|
1062
1127
|
HAS_BODY = true
|
|
1063
1128
|
end
|
|
1064
1129
|
# 509 Bandwidth Limit Exceeded - Apache bw/limited extension
|
|
@@ -1076,6 +1141,7 @@ module Net
|
|
|
1076
1141
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#510].
|
|
1077
1142
|
#
|
|
1078
1143
|
class HTTPNotExtended < HTTPServerError
|
|
1144
|
+
# :stopdoc:
|
|
1079
1145
|
HAS_BODY = true
|
|
1080
1146
|
end
|
|
1081
1147
|
|
|
@@ -1092,19 +1158,21 @@ module Net
|
|
|
1092
1158
|
# - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#511].
|
|
1093
1159
|
#
|
|
1094
1160
|
class HTTPNetworkAuthenticationRequired < HTTPServerError
|
|
1161
|
+
# :stopdoc:
|
|
1095
1162
|
HAS_BODY = true
|
|
1096
1163
|
end
|
|
1097
1164
|
|
|
1098
1165
|
end
|
|
1099
1166
|
|
|
1100
1167
|
class Net::HTTPResponse
|
|
1168
|
+
# :stopdoc:
|
|
1101
1169
|
CODE_CLASS_TO_OBJ = {
|
|
1102
1170
|
'1' => Net::HTTPInformation,
|
|
1103
1171
|
'2' => Net::HTTPSuccess,
|
|
1104
1172
|
'3' => Net::HTTPRedirection,
|
|
1105
1173
|
'4' => Net::HTTPClientError,
|
|
1106
1174
|
'5' => Net::HTTPServerError
|
|
1107
|
-
}
|
|
1175
|
+
}.freeze
|
|
1108
1176
|
CODE_TO_OBJ = {
|
|
1109
1177
|
'100' => Net::HTTPContinue,
|
|
1110
1178
|
'101' => Net::HTTPSwitchProtocol,
|
|
@@ -1170,5 +1238,5 @@ class Net::HTTPResponse
|
|
|
1170
1238
|
'508' => Net::HTTPLoopDetected,
|
|
1171
1239
|
'510' => Net::HTTPNotExtended,
|
|
1172
1240
|
'511' => Net::HTTPNetworkAuthenticationRequired,
|
|
1173
|
-
}
|
|
1241
|
+
}.freeze
|
|
1174
1242
|
end
|