rubygems-update 3.4.22 → 3.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (540) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +105 -2
  3. data/Manifest.txt +46 -221
  4. data/README.md +1 -3
  5. data/bundler/CHANGELOG.md +63 -0
  6. data/bundler/bundler.gemspec +4 -2
  7. data/bundler/exe/bundle +1 -10
  8. data/bundler/lib/bundler/build_metadata.rb +3 -3
  9. data/bundler/lib/bundler/capistrano.rb +1 -1
  10. data/bundler/lib/bundler/checksum.rb +254 -0
  11. data/bundler/lib/bundler/ci_detector.rb +75 -0
  12. data/bundler/lib/bundler/cli/add.rb +3 -3
  13. data/bundler/lib/bundler/cli/binstubs.rb +4 -4
  14. data/bundler/lib/bundler/cli/cache.rb +1 -1
  15. data/bundler/lib/bundler/cli/check.rb +1 -1
  16. data/bundler/lib/bundler/cli/common.rb +9 -1
  17. data/bundler/lib/bundler/cli/config.rb +8 -7
  18. data/bundler/lib/bundler/cli/console.rb +3 -2
  19. data/bundler/lib/bundler/cli/doctor.rb +2 -2
  20. data/bundler/lib/bundler/cli/exec.rb +1 -1
  21. data/bundler/lib/bundler/cli/gem.rb +28 -23
  22. data/bundler/lib/bundler/cli/info.rb +2 -13
  23. data/bundler/lib/bundler/cli/install.rb +5 -4
  24. data/bundler/lib/bundler/cli/issue.rb +1 -1
  25. data/bundler/lib/bundler/cli/lock.rb +4 -4
  26. data/bundler/lib/bundler/cli/open.rb +1 -1
  27. data/bundler/lib/bundler/cli/outdated.rb +6 -6
  28. data/bundler/lib/bundler/cli/plugin.rb +7 -14
  29. data/bundler/lib/bundler/cli/pristine.rb +38 -30
  30. data/bundler/lib/bundler/cli/show.rb +2 -2
  31. data/bundler/lib/bundler/cli/update.rb +5 -5
  32. data/bundler/lib/bundler/cli.rb +215 -263
  33. data/bundler/lib/bundler/compact_index_client/cache.rb +29 -9
  34. data/bundler/lib/bundler/compact_index_client/cache_file.rb +153 -0
  35. data/bundler/lib/bundler/compact_index_client/gem_parser.rb +7 -3
  36. data/bundler/lib/bundler/compact_index_client/updater.rb +79 -81
  37. data/bundler/lib/bundler/compact_index_client.rb +14 -7
  38. data/bundler/lib/bundler/constants.rb +1 -1
  39. data/bundler/lib/bundler/current_ruby.rb +5 -21
  40. data/bundler/lib/bundler/definition.rb +42 -15
  41. data/bundler/lib/bundler/dependency.rb +16 -12
  42. data/bundler/lib/bundler/digest.rb +2 -2
  43. data/bundler/lib/bundler/dsl.rb +46 -30
  44. data/bundler/lib/bundler/endpoint_specification.rb +5 -1
  45. data/bundler/lib/bundler/env.rb +1 -3
  46. data/bundler/lib/bundler/errors.rb +43 -0
  47. data/bundler/lib/bundler/fetcher/base.rb +3 -1
  48. data/bundler/lib/bundler/fetcher/compact_index.rb +4 -4
  49. data/bundler/lib/bundler/fetcher/downloader.rb +13 -11
  50. data/bundler/lib/bundler/fetcher/gem_remote_fetcher.rb +16 -0
  51. data/bundler/lib/bundler/fetcher/index.rb +1 -1
  52. data/bundler/lib/bundler/fetcher.rb +28 -25
  53. data/bundler/lib/bundler/friendly_errors.rb +5 -5
  54. data/bundler/lib/bundler/gem_helper.rb +1 -1
  55. data/bundler/lib/bundler/gem_helpers.rb +5 -2
  56. data/bundler/lib/bundler/graph.rb +9 -9
  57. data/bundler/lib/bundler/index.rb +1 -2
  58. data/bundler/lib/bundler/injector.rb +1 -1
  59. data/bundler/lib/bundler/inline.rb +3 -3
  60. data/bundler/lib/bundler/installer/gem_installer.rb +5 -5
  61. data/bundler/lib/bundler/installer/parallel_installer.rb +16 -8
  62. data/bundler/lib/bundler/installer/standalone.rb +2 -3
  63. data/bundler/lib/bundler/installer.rb +9 -9
  64. data/bundler/lib/bundler/lazy_specification.rb +24 -17
  65. data/bundler/lib/bundler/lockfile_generator.rb +9 -0
  66. data/bundler/lib/bundler/lockfile_parser.rb +81 -10
  67. data/bundler/lib/bundler/man/bundle-add.1 +3 -26
  68. data/bundler/lib/bundler/man/bundle-binstubs.1 +4 -16
  69. data/bundler/lib/bundler/man/bundle-cache.1 +3 -24
  70. data/bundler/lib/bundler/man/bundle-check.1 +3 -12
  71. data/bundler/lib/bundler/man/bundle-clean.1 +3 -10
  72. data/bundler/lib/bundler/man/bundle-config.1 +20 -211
  73. data/bundler/lib/bundler/man/bundle-config.1.ronn +6 -0
  74. data/bundler/lib/bundler/man/bundle-console.1 +4 -22
  75. data/bundler/lib/bundler/man/bundle-doctor.1 +4 -18
  76. data/bundler/lib/bundler/man/bundle-exec.1 +12 -73
  77. data/bundler/lib/bundler/man/bundle-gem.1 +13 -49
  78. data/bundler/lib/bundler/man/bundle-help.1 +3 -7
  79. data/bundler/lib/bundler/man/bundle-info.1 +3 -9
  80. data/bundler/lib/bundler/man/bundle-init.1 +3 -12
  81. data/bundler/lib/bundler/man/bundle-inject.1 +6 -19
  82. data/bundler/lib/bundler/man/bundle-install.1 +27 -125
  83. data/bundler/lib/bundler/man/bundle-install.1.ronn +1 -0
  84. data/bundler/lib/bundler/man/bundle-list.1 +4 -19
  85. data/bundler/lib/bundler/man/bundle-lock.1 +5 -29
  86. data/bundler/lib/bundler/man/bundle-open.1 +7 -27
  87. data/bundler/lib/bundler/man/bundle-outdated.1 +3 -55
  88. data/bundler/lib/bundler/man/bundle-outdated.1.ronn +1 -0
  89. data/bundler/lib/bundler/man/bundle-platform.1 +5 -27
  90. data/bundler/lib/bundler/man/bundle-plugin.1 +3 -29
  91. data/bundler/lib/bundler/man/bundle-pristine.1 +5 -16
  92. data/bundler/lib/bundler/man/bundle-remove.1 +4 -14
  93. data/bundler/lib/bundler/man/bundle-show.1 +3 -10
  94. data/bundler/lib/bundler/man/bundle-update.1 +18 -137
  95. data/bundler/lib/bundler/man/bundle-version.1 +3 -16
  96. data/bundler/lib/bundler/man/bundle-viz.1 +4 -16
  97. data/bundler/lib/bundler/man/bundle.1 +5 -44
  98. data/bundler/lib/bundler/man/gemfile.5 +24 -301
  99. data/bundler/lib/bundler/man/gemfile.5.ronn +4 -0
  100. data/bundler/lib/bundler/match_metadata.rb +4 -0
  101. data/bundler/lib/bundler/match_platform.rb +1 -1
  102. data/bundler/lib/bundler/plugin/api/source.rb +3 -2
  103. data/bundler/lib/bundler/plugin/installer.rb +1 -1
  104. data/bundler/lib/bundler/plugin.rb +3 -3
  105. data/bundler/lib/bundler/resolver/base.rb +1 -1
  106. data/bundler/lib/bundler/resolver/incompatibility.rb +1 -1
  107. data/bundler/lib/bundler/resolver/spec_group.rb +1 -4
  108. data/bundler/lib/bundler/resolver.rb +16 -16
  109. data/bundler/lib/bundler/ruby_dsl.rb +20 -12
  110. data/bundler/lib/bundler/ruby_version.rb +1 -1
  111. data/bundler/lib/bundler/rubygems_ext.rb +24 -50
  112. data/bundler/lib/bundler/rubygems_gem_installer.rb +6 -56
  113. data/bundler/lib/bundler/rubygems_integration.rb +25 -94
  114. data/bundler/lib/bundler/runtime.rb +2 -2
  115. data/bundler/lib/bundler/self_manager.rb +23 -7
  116. data/bundler/lib/bundler/settings.rb +27 -7
  117. data/bundler/lib/bundler/setup.rb +4 -1
  118. data/bundler/lib/bundler/shared_helpers.rb +35 -13
  119. data/bundler/lib/bundler/source/git/git_proxy.rb +15 -15
  120. data/bundler/lib/bundler/source/git.rb +4 -3
  121. data/bundler/lib/bundler/source/metadata.rb +15 -15
  122. data/bundler/lib/bundler/source/path.rb +7 -6
  123. data/bundler/lib/bundler/source/rubygems.rb +21 -14
  124. data/bundler/lib/bundler/source.rb +2 -0
  125. data/bundler/lib/bundler/spec_set.rb +38 -10
  126. data/bundler/lib/bundler/stub_specification.rb +1 -0
  127. data/bundler/lib/bundler/templates/Executable.bundler +1 -1
  128. data/bundler/lib/bundler/templates/newgem/README.md.tt +3 -3
  129. data/bundler/lib/bundler/templates/newgem/Rakefile.tt +2 -6
  130. data/bundler/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +1 -1
  131. data/bundler/lib/bundler/templates/newgem/standard.yml.tt +1 -1
  132. data/bundler/lib/bundler/ui/shell.rb +1 -1
  133. data/bundler/lib/bundler/vendor/connection_pool/.document +1 -0
  134. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +1 -1
  135. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +53 -6
  136. data/bundler/lib/bundler/vendor/fileutils/.document +1 -0
  137. data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +8 -20
  138. data/bundler/lib/bundler/vendor/net-http-persistent/.document +1 -0
  139. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +3 -3
  140. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +2 -2
  141. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +1 -1
  142. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +34 -34
  143. data/bundler/lib/bundler/vendor/pub_grub/.document +1 -0
  144. data/bundler/lib/bundler/vendor/thor/.document +1 -0
  145. data/bundler/lib/bundler/vendor/tsort/.document +1 -0
  146. data/bundler/lib/bundler/vendor/tsort/lib/tsort.rb +3 -0
  147. data/bundler/lib/bundler/vendor/uri/.document +1 -0
  148. data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +256 -132
  149. data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +1 -0
  150. data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +95 -31
  151. data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
  152. data/bundler/lib/bundler/vendored_net_http.rb +8 -0
  153. data/bundler/lib/bundler/vendored_persistent.rb +0 -4
  154. data/bundler/lib/bundler/vendored_timeout.rb +8 -0
  155. data/bundler/lib/bundler/version.rb +1 -1
  156. data/bundler/lib/bundler/vlad.rb +1 -1
  157. data/bundler/lib/bundler/yaml_serializer.rb +3 -3
  158. data/bundler/lib/bundler.rb +41 -32
  159. data/lib/rubygems/available_set.rb +4 -4
  160. data/lib/rubygems/basic_specification.rb +35 -37
  161. data/lib/rubygems/bundler_version_finder.rb +4 -4
  162. data/lib/rubygems/ci_detector.rb +75 -0
  163. data/lib/rubygems/command.rb +13 -15
  164. data/lib/rubygems/command_manager.rb +5 -4
  165. data/lib/rubygems/commands/build_command.rb +2 -2
  166. data/lib/rubygems/commands/cert_command.rb +1 -2
  167. data/lib/rubygems/commands/check_command.rb +4 -4
  168. data/lib/rubygems/commands/cleanup_command.rb +12 -14
  169. data/lib/rubygems/commands/contents_command.rb +4 -4
  170. data/lib/rubygems/commands/dependency_command.rb +4 -5
  171. data/lib/rubygems/commands/environment_command.rb +1 -3
  172. data/lib/rubygems/commands/exec_command.rb +1 -1
  173. data/lib/rubygems/commands/fetch_command.rb +2 -2
  174. data/lib/rubygems/commands/generate_index_command.rb +39 -74
  175. data/lib/rubygems/commands/help_command.rb +3 -3
  176. data/lib/rubygems/commands/info_command.rb +2 -2
  177. data/lib/rubygems/commands/install_command.rb +8 -16
  178. data/lib/rubygems/commands/list_command.rb +2 -2
  179. data/lib/rubygems/commands/lock_command.rb +1 -1
  180. data/lib/rubygems/commands/open_command.rb +1 -1
  181. data/lib/rubygems/commands/owner_command.rb +1 -1
  182. data/lib/rubygems/commands/pristine_command.rb +13 -15
  183. data/lib/rubygems/commands/push_command.rb +2 -2
  184. data/lib/rubygems/commands/query_command.rb +4 -5
  185. data/lib/rubygems/commands/rdoc_command.rb +2 -2
  186. data/lib/rubygems/commands/search_command.rb +2 -2
  187. data/lib/rubygems/commands/setup_command.rb +31 -34
  188. data/lib/rubygems/commands/sources_command.rb +12 -12
  189. data/lib/rubygems/commands/specification_command.rb +10 -10
  190. data/lib/rubygems/commands/stale_command.rb +1 -1
  191. data/lib/rubygems/commands/uninstall_command.rb +9 -10
  192. data/lib/rubygems/commands/unpack_command.rb +4 -4
  193. data/lib/rubygems/commands/update_command.rb +10 -12
  194. data/lib/rubygems/commands/which_command.rb +1 -1
  195. data/lib/rubygems/commands/yank_command.rb +1 -1
  196. data/lib/rubygems/compatibility.rb +5 -6
  197. data/lib/rubygems/config_file.rb +4 -4
  198. data/lib/rubygems/core_ext/kernel_gem.rb +0 -2
  199. data/lib/rubygems/core_ext/kernel_require.rb +19 -48
  200. data/lib/rubygems/core_ext/kernel_warn.rb +1 -1
  201. data/lib/rubygems/core_ext/tcpsocket_init.rb +1 -1
  202. data/lib/rubygems/defaults.rb +15 -3
  203. data/lib/rubygems/dependency.rb +12 -14
  204. data/lib/rubygems/dependency_installer.rb +29 -30
  205. data/lib/rubygems/dependency_list.rb +1 -1
  206. data/lib/rubygems/deprecate.rb +16 -15
  207. data/lib/rubygems/doctor.rb +5 -5
  208. data/lib/rubygems/errors.rb +2 -6
  209. data/lib/rubygems/exceptions.rb +2 -1
  210. data/lib/rubygems/ext/builder.rb +15 -10
  211. data/lib/rubygems/ext/cargo_builder.rb +5 -5
  212. data/lib/rubygems/ext/ext_conf_builder.rb +1 -3
  213. data/lib/rubygems/gem_runner.rb +4 -4
  214. data/lib/rubygems/gemcutter_utilities/webauthn_listener/response.rb +3 -3
  215. data/lib/rubygems/gemcutter_utilities/webauthn_poller.rb +3 -3
  216. data/lib/rubygems/gemcutter_utilities.rb +18 -19
  217. data/lib/rubygems/install_update_options.rb +18 -19
  218. data/lib/rubygems/installer.rb +59 -33
  219. data/lib/rubygems/installer_uninstaller_utils.rb +0 -2
  220. data/lib/rubygems/local_remote_options.rb +7 -10
  221. data/lib/rubygems/name_tuple.rb +7 -9
  222. data/lib/rubygems/net/http.rb +3 -0
  223. data/lib/rubygems/net-http/.document +1 -0
  224. data/lib/rubygems/net-http/LICENSE.txt +22 -0
  225. data/lib/rubygems/net-http/lib/net/http/backward.rb +40 -0
  226. data/lib/rubygems/net-http/lib/net/http/exceptions.rb +34 -0
  227. data/lib/rubygems/net-http/lib/net/http/generic_request.rb +414 -0
  228. data/lib/rubygems/net-http/lib/net/http/header.rb +981 -0
  229. data/lib/rubygems/net-http/lib/net/http/proxy_delta.rb +17 -0
  230. data/lib/rubygems/net-http/lib/net/http/request.rb +88 -0
  231. data/lib/rubygems/net-http/lib/net/http/requests.rb +425 -0
  232. data/lib/rubygems/net-http/lib/net/http/response.rb +738 -0
  233. data/lib/rubygems/net-http/lib/net/http/responses.rb +1174 -0
  234. data/lib/rubygems/net-http/lib/net/http/status.rb +84 -0
  235. data/lib/rubygems/net-http/lib/net/http.rb +2496 -0
  236. data/lib/rubygems/net-http/lib/net/https.rb +23 -0
  237. data/lib/rubygems/net-protocol/.document +1 -0
  238. data/lib/rubygems/net-protocol/LICENSE.txt +22 -0
  239. data/lib/rubygems/net-protocol/lib/net/protocol.rb +544 -0
  240. data/lib/rubygems/optparse/lib/optparse.rb +39 -17
  241. data/lib/rubygems/package/old.rb +2 -2
  242. data/lib/rubygems/package/tar_header.rb +45 -39
  243. data/lib/rubygems/package/tar_reader/entry.rb +5 -4
  244. data/lib/rubygems/package/tar_reader.rb +5 -3
  245. data/lib/rubygems/package/tar_writer.rb +19 -17
  246. data/lib/rubygems/package.rb +27 -26
  247. data/lib/rubygems/package_task.rb +2 -2
  248. data/lib/rubygems/path_support.rb +9 -10
  249. data/lib/rubygems/platform.rb +60 -45
  250. data/lib/rubygems/query_utils.rb +7 -9
  251. data/lib/rubygems/remote_fetcher.rb +15 -15
  252. data/lib/rubygems/request/connection_pools.rb +3 -3
  253. data/lib/rubygems/request.rb +20 -17
  254. data/lib/rubygems/request_set/gem_dependency_api.rb +119 -122
  255. data/lib/rubygems/request_set/lockfile/parser.rb +9 -9
  256. data/lib/rubygems/request_set/lockfile/tokenizer.rb +20 -12
  257. data/lib/rubygems/request_set/lockfile.rb +6 -11
  258. data/lib/rubygems/request_set.rb +5 -5
  259. data/lib/rubygems/requirement.rb +7 -7
  260. data/lib/rubygems/resolv/.document +1 -0
  261. data/lib/rubygems/resolv/LICENSE.txt +22 -0
  262. data/lib/rubygems/resolv/lib/resolv.rb +3387 -0
  263. data/lib/rubygems/resolver/activation_request.rb +1 -3
  264. data/lib/rubygems/resolver/api_set/gem_parser.rb +7 -3
  265. data/lib/rubygems/resolver/best_set.rb +1 -1
  266. data/lib/rubygems/resolver/composed_set.rb +1 -1
  267. data/lib/rubygems/resolver/conflict.rb +4 -12
  268. data/lib/rubygems/resolver/index_set.rb +4 -4
  269. data/lib/rubygems/resolver/index_specification.rb +2 -2
  270. data/lib/rubygems/resolver/installer_set.rb +5 -6
  271. data/lib/rubygems/resolver/lock_set.rb +1 -1
  272. data/lib/rubygems/resolver/molinillo/.document +1 -0
  273. data/lib/rubygems/resolver.rb +3 -10
  274. data/lib/rubygems/s3_uri_signer.rb +6 -6
  275. data/lib/rubygems/safe_marshal/elements.rb +138 -0
  276. data/lib/rubygems/safe_marshal/reader.rb +306 -0
  277. data/lib/rubygems/safe_marshal/visitors/stream_printer.rb +31 -0
  278. data/lib/rubygems/safe_marshal/visitors/to_ruby.rb +385 -0
  279. data/lib/rubygems/safe_marshal/visitors/visitor.rb +74 -0
  280. data/lib/rubygems/safe_marshal.rb +74 -0
  281. data/lib/rubygems/safe_yaml.rb +5 -28
  282. data/lib/rubygems/security/policies.rb +36 -38
  283. data/lib/rubygems/security/policy.rb +7 -11
  284. data/lib/rubygems/security/signer.rb +1 -1
  285. data/lib/rubygems/security/trust_dir.rb +3 -3
  286. data/lib/rubygems/security.rb +8 -22
  287. data/lib/rubygems/source/git.rb +1 -3
  288. data/lib/rubygems/source/installed.rb +0 -2
  289. data/lib/rubygems/source/local.rb +5 -8
  290. data/lib/rubygems/source/lock.rb +1 -3
  291. data/lib/rubygems/source/specific_file.rb +0 -1
  292. data/lib/rubygems/source/vendor.rb +0 -2
  293. data/lib/rubygems/source.rb +12 -12
  294. data/lib/rubygems/source_list.rb +4 -4
  295. data/lib/rubygems/spec_fetcher.rb +29 -29
  296. data/lib/rubygems/specification.rb +125 -138
  297. data/lib/rubygems/specification_policy.rb +55 -25
  298. data/lib/rubygems/stub_specification.rb +4 -5
  299. data/lib/rubygems/text.rb +1 -2
  300. data/lib/rubygems/timeout/.document +1 -0
  301. data/lib/rubygems/timeout/LICENSE.txt +22 -0
  302. data/lib/rubygems/timeout/lib/timeout.rb +199 -0
  303. data/lib/rubygems/timeout.rb +3 -0
  304. data/lib/rubygems/tsort/lib/tsort.rb +3 -0
  305. data/lib/rubygems/uninstaller.rb +7 -9
  306. data/lib/rubygems/update_suggestion.rb +5 -18
  307. data/lib/rubygems/uri_formatter.rb +1 -1
  308. data/lib/rubygems/user_interaction.rb +15 -21
  309. data/lib/rubygems/util/licenses.rb +65 -35
  310. data/lib/rubygems/util/list.rb +3 -1
  311. data/lib/rubygems/util.rb +2 -4
  312. data/lib/rubygems/validator.rb +5 -3
  313. data/lib/rubygems/version.rb +34 -28
  314. data/lib/rubygems/version_option.rb +2 -5
  315. data/lib/rubygems/yaml_serializer.rb +3 -3
  316. data/lib/rubygems.rb +37 -37
  317. data/rubygems-update.gemspec +4 -4
  318. data/setup.rb +2 -2
  319. metadata +50 -225
  320. data/lib/rubygems/indexer.rb +0 -428
  321. data/lib/rubygems/mock_gem_ui.rb +0 -86
  322. data/test/rubygems/alternate_cert.pem +0 -19
  323. data/test/rubygems/alternate_cert_32.pem +0 -19
  324. data/test/rubygems/alternate_key.pem +0 -27
  325. data/test/rubygems/bad_rake.rb +0 -3
  326. data/test/rubygems/bundler_test_gem.rb +0 -424
  327. data/test/rubygems/ca_cert.pem +0 -77
  328. data/test/rubygems/child_cert.pem +0 -19
  329. data/test/rubygems/child_cert_32.pem +0 -19
  330. data/test/rubygems/child_key.pem +0 -27
  331. data/test/rubygems/client.pem +0 -107
  332. data/test/rubygems/data/excon-0.7.7.gemspec.rz +0 -0
  333. data/test/rubygems/data/gem-private_key.pem +0 -27
  334. data/test/rubygems/data/gem-public_cert.pem +0 -20
  335. data/test/rubygems/data/null-required-ruby-version.gemspec.rz +0 -0
  336. data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
  337. data/test/rubygems/data/pry-0.4.7.gemspec.rz +0 -0
  338. data/test/rubygems/encrypted_private_key.pem +0 -30
  339. data/test/rubygems/expired_cert.pem +0 -19
  340. data/test/rubygems/fake_certlib/openssl.rb +0 -9
  341. data/test/rubygems/foo/discover.rb +0 -1
  342. data/test/rubygems/future_cert.pem +0 -19
  343. data/test/rubygems/future_cert_32.pem +0 -19
  344. data/test/rubygems/good_rake.rb +0 -3
  345. data/test/rubygems/grandchild_cert.pem +0 -19
  346. data/test/rubygems/grandchild_cert_32.pem +0 -19
  347. data/test/rubygems/grandchild_key.pem +0 -27
  348. data/test/rubygems/helper.rb +0 -1649
  349. data/test/rubygems/installer_test_case.rb +0 -248
  350. data/test/rubygems/invalid_client.pem +0 -49
  351. data/test/rubygems/invalid_issuer_cert.pem +0 -20
  352. data/test/rubygems/invalid_issuer_cert_32.pem +0 -20
  353. data/test/rubygems/invalid_key.pem +0 -27
  354. data/test/rubygems/invalid_signer_cert.pem +0 -19
  355. data/test/rubygems/invalid_signer_cert_32.pem +0 -19
  356. data/test/rubygems/invalidchild_cert.pem +0 -19
  357. data/test/rubygems/invalidchild_cert_32.pem +0 -19
  358. data/test/rubygems/invalidchild_key.pem +0 -27
  359. data/test/rubygems/multifactor_auth_utilities.rb +0 -111
  360. data/test/rubygems/package/tar_test_case.rb +0 -175
  361. data/test/rubygems/packages/Bluebie-legs-0.6.2.gem +0 -0
  362. data/test/rubygems/packages/ascii_binder-0.1.10.1.gem +0 -0
  363. data/test/rubygems/packages/ill-formatted-platform-1.0.0.10.gem +0 -0
  364. data/test/rubygems/plugin/exception/rubygems_plugin.rb +0 -4
  365. data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -5
  366. data/test/rubygems/plugin/standarderror/rubygems_plugin.rb +0 -4
  367. data/test/rubygems/private3072_key.pem +0 -40
  368. data/test/rubygems/private_ec_key.pem +0 -9
  369. data/test/rubygems/private_key.pem +0 -27
  370. data/test/rubygems/public3072_cert.pem +0 -25
  371. data/test/rubygems/public_cert.pem +0 -20
  372. data/test/rubygems/public_cert_32.pem +0 -19
  373. data/test/rubygems/public_key.pem +0 -9
  374. data/test/rubygems/rubygems/commands/crash_command.rb +0 -5
  375. data/test/rubygems/rubygems_plugin.rb +0 -24
  376. data/test/rubygems/sff/discover.rb +0 -1
  377. data/test/rubygems/simple_gem.rb +0 -68
  378. data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -9
  379. data/test/rubygems/specifications/foo-0.0.1-x86-mswin32.gemspec +0 -0
  380. data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +0 -14
  381. data/test/rubygems/ssl_cert.pem +0 -80
  382. data/test/rubygems/ssl_key.pem +0 -27
  383. data/test/rubygems/test_bundled_ca.rb +0 -61
  384. data/test/rubygems/test_config.rb +0 -28
  385. data/test/rubygems/test_deprecate.rb +0 -158
  386. data/test/rubygems/test_exit.rb +0 -17
  387. data/test/rubygems/test_gem.rb +0 -1799
  388. data/test/rubygems/test_gem_available_set.rb +0 -130
  389. data/test/rubygems/test_gem_bundler_version_finder.rb +0 -127
  390. data/test/rubygems/test_gem_command.rb +0 -403
  391. data/test/rubygems/test_gem_command_manager.rb +0 -400
  392. data/test/rubygems/test_gem_commands_build_command.rb +0 -739
  393. data/test/rubygems/test_gem_commands_cert_command.rb +0 -866
  394. data/test/rubygems/test_gem_commands_check_command.rb +0 -68
  395. data/test/rubygems/test_gem_commands_cleanup_command.rb +0 -292
  396. data/test/rubygems/test_gem_commands_contents_command.rb +0 -271
  397. data/test/rubygems/test_gem_commands_dependency_command.rb +0 -228
  398. data/test/rubygems/test_gem_commands_environment_command.rb +0 -169
  399. data/test/rubygems/test_gem_commands_exec_command.rb +0 -857
  400. data/test/rubygems/test_gem_commands_fetch_command.rb +0 -258
  401. data/test/rubygems/test_gem_commands_generate_index_command.rb +0 -81
  402. data/test/rubygems/test_gem_commands_help_command.rb +0 -94
  403. data/test/rubygems/test_gem_commands_info_command.rb +0 -70
  404. data/test/rubygems/test_gem_commands_install_command.rb +0 -1573
  405. data/test/rubygems/test_gem_commands_list_command.rb +0 -33
  406. data/test/rubygems/test_gem_commands_lock_command.rb +0 -67
  407. data/test/rubygems/test_gem_commands_mirror.rb +0 -20
  408. data/test/rubygems/test_gem_commands_open_command.rb +0 -101
  409. data/test/rubygems/test_gem_commands_outdated_command.rb +0 -50
  410. data/test/rubygems/test_gem_commands_owner_command.rb +0 -503
  411. data/test/rubygems/test_gem_commands_pristine_command.rb +0 -708
  412. data/test/rubygems/test_gem_commands_push_command.rb +0 -603
  413. data/test/rubygems/test_gem_commands_query_command.rb +0 -858
  414. data/test/rubygems/test_gem_commands_search_command.rb +0 -16
  415. data/test/rubygems/test_gem_commands_server_command.rb +0 -20
  416. data/test/rubygems/test_gem_commands_setup_command.rb +0 -474
  417. data/test/rubygems/test_gem_commands_signin_command.rb +0 -259
  418. data/test/rubygems/test_gem_commands_signout_command.rb +0 -30
  419. data/test/rubygems/test_gem_commands_sources_command.rb +0 -534
  420. data/test/rubygems/test_gem_commands_specification_command.rb +0 -277
  421. data/test/rubygems/test_gem_commands_stale_command.rb +0 -43
  422. data/test/rubygems/test_gem_commands_uninstall_command.rb +0 -542
  423. data/test/rubygems/test_gem_commands_unpack_command.rb +0 -224
  424. data/test/rubygems/test_gem_commands_update_command.rb +0 -836
  425. data/test/rubygems/test_gem_commands_which_command.rb +0 -85
  426. data/test/rubygems/test_gem_commands_yank_command.rb +0 -299
  427. data/test/rubygems/test_gem_config_file.rb +0 -551
  428. data/test/rubygems/test_gem_dependency.rb +0 -398
  429. data/test/rubygems/test_gem_dependency_installer.rb +0 -1190
  430. data/test/rubygems/test_gem_dependency_list.rb +0 -265
  431. data/test/rubygems/test_gem_dependency_resolution_error.rb +0 -27
  432. data/test/rubygems/test_gem_doctor.rb +0 -195
  433. data/test/rubygems/test_gem_ext_builder.rb +0 -337
  434. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/.gitignore +0 -1
  435. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/custom_name.gemspec +0 -10
  436. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/Cargo.lock +0 -249
  437. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/Cargo.toml +0 -10
  438. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/src/lib.rs +0 -27
  439. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/lib/custom_name.rb +0 -3
  440. data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/.gitignore +0 -1
  441. data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.lock +0 -249
  442. data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.toml +0 -10
  443. data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/rust_ruby_example.gemspec +0 -10
  444. data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/src/lib.rs +0 -51
  445. data/test/rubygems/test_gem_ext_cargo_builder.rb +0 -167
  446. data/test/rubygems/test_gem_ext_cargo_builder_link_flag_converter.rb +0 -34
  447. data/test/rubygems/test_gem_ext_cargo_builder_unit.rb +0 -60
  448. data/test/rubygems/test_gem_ext_cmake_builder.rb +0 -84
  449. data/test/rubygems/test_gem_ext_configure_builder.rb +0 -80
  450. data/test/rubygems/test_gem_ext_ext_conf_builder.rb +0 -229
  451. data/test/rubygems/test_gem_ext_rake_builder.rb +0 -113
  452. data/test/rubygems/test_gem_gem_runner.rb +0 -119
  453. data/test/rubygems/test_gem_gemcutter_utilities.rb +0 -361
  454. data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -60
  455. data/test/rubygems/test_gem_indexer.rb +0 -381
  456. data/test/rubygems/test_gem_install_update_options.rb +0 -208
  457. data/test/rubygems/test_gem_installer.rb +0 -2512
  458. data/test/rubygems/test_gem_local_remote_options.rb +0 -133
  459. data/test/rubygems/test_gem_name_tuple.rb +0 -43
  460. data/test/rubygems/test_gem_package.rb +0 -1306
  461. data/test/rubygems/test_gem_package_old.rb +0 -91
  462. data/test/rubygems/test_gem_package_tar_header.rb +0 -226
  463. data/test/rubygems/test_gem_package_tar_reader.rb +0 -150
  464. data/test/rubygems/test_gem_package_tar_reader_entry.rb +0 -350
  465. data/test/rubygems/test_gem_package_tar_writer.rb +0 -331
  466. data/test/rubygems/test_gem_package_task.rb +0 -118
  467. data/test/rubygems/test_gem_path_support.rb +0 -139
  468. data/test/rubygems/test_gem_platform.rb +0 -497
  469. data/test/rubygems/test_gem_rdoc.rb +0 -137
  470. data/test/rubygems/test_gem_remote_fetcher.rb +0 -1227
  471. data/test/rubygems/test_gem_request.rb +0 -547
  472. data/test/rubygems/test_gem_request_connection_pools.rb +0 -152
  473. data/test/rubygems/test_gem_request_set.rb +0 -672
  474. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +0 -853
  475. data/test/rubygems/test_gem_request_set_lockfile.rb +0 -469
  476. data/test/rubygems/test_gem_request_set_lockfile_parser.rb +0 -544
  477. data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +0 -307
  478. data/test/rubygems/test_gem_requirement.rb +0 -505
  479. data/test/rubygems/test_gem_resolver.rb +0 -859
  480. data/test/rubygems/test_gem_resolver_activation_request.rb +0 -43
  481. data/test/rubygems/test_gem_resolver_api_set.rb +0 -210
  482. data/test/rubygems/test_gem_resolver_api_specification.rb +0 -167
  483. data/test/rubygems/test_gem_resolver_best_set.rb +0 -159
  484. data/test/rubygems/test_gem_resolver_composed_set.rb +0 -44
  485. data/test/rubygems/test_gem_resolver_conflict.rb +0 -82
  486. data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -83
  487. data/test/rubygems/test_gem_resolver_git_set.rb +0 -188
  488. data/test/rubygems/test_gem_resolver_git_specification.rb +0 -114
  489. data/test/rubygems/test_gem_resolver_index_set.rb +0 -88
  490. data/test/rubygems/test_gem_resolver_index_specification.rb +0 -93
  491. data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -47
  492. data/test/rubygems/test_gem_resolver_installer_set.rb +0 -320
  493. data/test/rubygems/test_gem_resolver_local_specification.rb +0 -44
  494. data/test/rubygems/test_gem_resolver_lock_set.rb +0 -62
  495. data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -98
  496. data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -19
  497. data/test/rubygems/test_gem_resolver_specification.rb +0 -63
  498. data/test/rubygems/test_gem_resolver_vendor_set.rb +0 -82
  499. data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -82
  500. data/test/rubygems/test_gem_security.rb +0 -341
  501. data/test/rubygems/test_gem_security_policy.rb +0 -535
  502. data/test/rubygems/test_gem_security_signer.rb +0 -218
  503. data/test/rubygems/test_gem_security_trust_dir.rb +0 -99
  504. data/test/rubygems/test_gem_silent_ui.rb +0 -123
  505. data/test/rubygems/test_gem_source.rb +0 -254
  506. data/test/rubygems/test_gem_source_fetch_problem.rb +0 -37
  507. data/test/rubygems/test_gem_source_git.rb +0 -310
  508. data/test/rubygems/test_gem_source_installed.rb +0 -35
  509. data/test/rubygems/test_gem_source_list.rb +0 -119
  510. data/test/rubygems/test_gem_source_local.rb +0 -107
  511. data/test/rubygems/test_gem_source_lock.rb +0 -113
  512. data/test/rubygems/test_gem_source_specific_file.rb +0 -76
  513. data/test/rubygems/test_gem_source_subpath_problem.rb +0 -50
  514. data/test/rubygems/test_gem_source_vendor.rb +0 -30
  515. data/test/rubygems/test_gem_spec_fetcher.rb +0 -338
  516. data/test/rubygems/test_gem_specification.rb +0 -3856
  517. data/test/rubygems/test_gem_stream_ui.rb +0 -255
  518. data/test/rubygems/test_gem_stub_specification.rb +0 -278
  519. data/test/rubygems/test_gem_text.rb +0 -103
  520. data/test/rubygems/test_gem_uninstaller.rb +0 -675
  521. data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -31
  522. data/test/rubygems/test_gem_update_suggestion.rb +0 -209
  523. data/test/rubygems/test_gem_uri.rb +0 -41
  524. data/test/rubygems/test_gem_uri_formatter.rb +0 -27
  525. data/test/rubygems/test_gem_util.rb +0 -91
  526. data/test/rubygems/test_gem_validator.rb +0 -42
  527. data/test/rubygems/test_gem_version.rb +0 -305
  528. data/test/rubygems/test_gem_version_option.rb +0 -165
  529. data/test/rubygems/test_kernel.rb +0 -124
  530. data/test/rubygems/test_project_sanity.rb +0 -49
  531. data/test/rubygems/test_remote_fetch_error.rb +0 -20
  532. data/test/rubygems/test_require.rb +0 -732
  533. data/test/rubygems/test_rubygems.rb +0 -76
  534. data/test/rubygems/test_webauthn_listener.rb +0 -143
  535. data/test/rubygems/test_webauthn_listener_response.rb +0 -93
  536. data/test/rubygems/test_webauthn_poller.rb +0 -124
  537. data/test/rubygems/utilities.rb +0 -436
  538. data/test/rubygems/wrong_key_cert.pem +0 -19
  539. data/test/rubygems/wrong_key_cert_32.pem +0 -19
  540. data/test/test_changelog_generator.rb +0 -17
@@ -0,0 +1,1174 @@
1
+ # frozen_string_literal: true
2
+ #--
3
+ # https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
4
+
5
+ module Gem::Net
6
+
7
+ class HTTPUnknownResponse < HTTPResponse
8
+ HAS_BODY = true
9
+ EXCEPTION_TYPE = HTTPError #
10
+ end
11
+
12
+ # Parent class for informational (1xx) HTTP response classes.
13
+ #
14
+ # An informational response indicates that the request was received and understood.
15
+ #
16
+ # References:
17
+ #
18
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#status.1xx].
19
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#1xx_informational_response].
20
+ #
21
+ class HTTPInformation < HTTPResponse
22
+ HAS_BODY = false
23
+ EXCEPTION_TYPE = HTTPError #
24
+ end
25
+
26
+ # Parent class for success (2xx) HTTP response classes.
27
+ #
28
+ # A success response indicates the action requested by the client
29
+ # was received, understood, and accepted.
30
+ #
31
+ # References:
32
+ #
33
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#status.2xx].
34
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#2xx_success].
35
+ #
36
+ class HTTPSuccess < HTTPResponse
37
+ HAS_BODY = true
38
+ EXCEPTION_TYPE = HTTPError #
39
+ end
40
+
41
+ # Parent class for redirection (3xx) HTTP response classes.
42
+ #
43
+ # A redirection response indicates the client must take additional action
44
+ # to complete the request.
45
+ #
46
+ # References:
47
+ #
48
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#status.3xx].
49
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#3xx_redirection].
50
+ #
51
+ class HTTPRedirection < HTTPResponse
52
+ HAS_BODY = true
53
+ EXCEPTION_TYPE = HTTPRetriableError #
54
+ end
55
+
56
+ # Parent class for client error (4xx) HTTP response classes.
57
+ #
58
+ # A client error response indicates that the client may have caused an error.
59
+ #
60
+ # References:
61
+ #
62
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#status.4xx].
63
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_client_errors].
64
+ #
65
+ class HTTPClientError < HTTPResponse
66
+ HAS_BODY = true
67
+ EXCEPTION_TYPE = HTTPClientException #
68
+ end
69
+
70
+ # Parent class for server error (5xx) HTTP response classes.
71
+ #
72
+ # A server error response indicates that the server failed to fulfill a request.
73
+ #
74
+ # References:
75
+ #
76
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#status.5xx].
77
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#5xx_server_errors].
78
+ #
79
+ class HTTPServerError < HTTPResponse
80
+ HAS_BODY = true
81
+ EXCEPTION_TYPE = HTTPFatalError #
82
+ end
83
+
84
+ # Response class for +Continue+ responses (status code 100).
85
+ #
86
+ # A +Continue+ response indicates that the server has received the request headers.
87
+ #
88
+ # :include: doc/net-http/included_getters.rdoc
89
+ #
90
+ # References:
91
+ #
92
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/100].
93
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-100-continue].
94
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#100].
95
+ #
96
+ class HTTPContinue < HTTPInformation
97
+ HAS_BODY = false
98
+ end
99
+
100
+ # Response class for <tt>Switching Protocol</tt> responses (status code 101).
101
+ #
102
+ # The <tt>Switching Protocol<tt> response indicates that the server has received
103
+ # a request to switch protocols, and has agreed to do so.
104
+ #
105
+ # :include: doc/net-http/included_getters.rdoc
106
+ #
107
+ # References:
108
+ #
109
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/101].
110
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-101-switching-protocols].
111
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#101].
112
+ #
113
+ class HTTPSwitchProtocol < HTTPInformation
114
+ HAS_BODY = false
115
+ end
116
+
117
+ # Response class for +Processing+ responses (status code 102).
118
+ #
119
+ # The +Processing+ response indicates that the server has received
120
+ # and is processing the request, but no response is available yet.
121
+ #
122
+ # :include: doc/net-http/included_getters.rdoc
123
+ #
124
+ # References:
125
+ #
126
+ # - {RFC 2518}[https://www.rfc-editor.org/rfc/rfc2518#section-10.1].
127
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#102].
128
+ #
129
+ class HTTPProcessing < HTTPInformation
130
+ HAS_BODY = false
131
+ end
132
+
133
+ # Response class for <tt>Early Hints</tt> responses (status code 103).
134
+ #
135
+ # The <tt>Early Hints</tt> indicates that the server has received
136
+ # and is processing the request, and contains certain headers;
137
+ # the final response is not available yet.
138
+ #
139
+ # :include: doc/net-http/included_getters.rdoc
140
+ #
141
+ # References:
142
+ #
143
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/103].
144
+ # - {RFC 8297}[https://www.rfc-editor.org/rfc/rfc8297.html#section-2].
145
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#103].
146
+ #
147
+ class HTTPEarlyHints < HTTPInformation
148
+ HAS_BODY = false
149
+ end
150
+
151
+ # Response class for +OK+ responses (status code 200).
152
+ #
153
+ # The +OK+ response indicates that the server has received
154
+ # a request and has responded successfully.
155
+ #
156
+ # :include: doc/net-http/included_getters.rdoc
157
+ #
158
+ # References:
159
+ #
160
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/200].
161
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-200-ok].
162
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#200].
163
+ #
164
+ class HTTPOK < HTTPSuccess
165
+ HAS_BODY = true
166
+ end
167
+
168
+ # Response class for +Created+ responses (status code 201).
169
+ #
170
+ # The +Created+ response indicates that the server has received
171
+ # and has fulfilled a request to create a new resource.
172
+ #
173
+ # :include: doc/net-http/included_getters.rdoc
174
+ #
175
+ # References:
176
+ #
177
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/201].
178
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-201-created].
179
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#201].
180
+ #
181
+ class HTTPCreated < HTTPSuccess
182
+ HAS_BODY = true
183
+ end
184
+
185
+ # Response class for +Accepted+ responses (status code 202).
186
+ #
187
+ # The +Accepted+ response indicates that the server has received
188
+ # and is processing a request, but the processing has not yet been completed.
189
+ #
190
+ # :include: doc/net-http/included_getters.rdoc
191
+ #
192
+ # References:
193
+ #
194
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/202].
195
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-202-accepted].
196
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#202].
197
+ #
198
+ class HTTPAccepted < HTTPSuccess
199
+ HAS_BODY = true
200
+ end
201
+
202
+ # Response class for <tt>Non-Authoritative Information</tt> responses (status code 203).
203
+ #
204
+ # The <tt>Non-Authoritative Information</tt> response indicates that the server
205
+ # is a transforming proxy (such as a Web accelerator)
206
+ # that received a 200 OK response from its origin,
207
+ # and is returning a modified version of the origin's response.
208
+ #
209
+ # :include: doc/net-http/included_getters.rdoc
210
+ #
211
+ # References:
212
+ #
213
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/203].
214
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-203-non-authoritative-infor].
215
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#203].
216
+ #
217
+ class HTTPNonAuthoritativeInformation < HTTPSuccess
218
+ HAS_BODY = true
219
+ end
220
+
221
+ # Response class for <tt>No Content</tt> responses (status code 204).
222
+ #
223
+ # The <tt>No Content</tt> response indicates that the server
224
+ # successfully processed the request, and is not returning any content.
225
+ #
226
+ # :include: doc/net-http/included_getters.rdoc
227
+ #
228
+ # References:
229
+ #
230
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/204].
231
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-204-no-content].
232
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#204].
233
+ #
234
+ class HTTPNoContent < HTTPSuccess
235
+ HAS_BODY = false
236
+ end
237
+
238
+ # Response class for <tt>Reset Content</tt> responses (status code 205).
239
+ #
240
+ # The <tt>Reset Content</tt> response indicates that the server
241
+ # successfully processed the request,
242
+ # asks that the client reset its document view, and is not returning any content.
243
+ #
244
+ # :include: doc/net-http/included_getters.rdoc
245
+ #
246
+ # References:
247
+ #
248
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/205].
249
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-205-reset-content].
250
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#205].
251
+ #
252
+ class HTTPResetContent < HTTPSuccess
253
+ HAS_BODY = false
254
+ end
255
+
256
+ # Response class for <tt>Partial Content</tt> responses (status code 206).
257
+ #
258
+ # The <tt>Partial Content</tt> response indicates that the server is delivering
259
+ # only part of the resource (byte serving)
260
+ # due to a Range header in the request.
261
+ #
262
+ # :include: doc/net-http/included_getters.rdoc
263
+ #
264
+ # References:
265
+ #
266
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/206].
267
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-206-partial-content].
268
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#206].
269
+ #
270
+ class HTTPPartialContent < HTTPSuccess
271
+ HAS_BODY = true
272
+ end
273
+
274
+ # Response class for <tt>Multi-Status (WebDAV)</tt> responses (status code 207).
275
+ #
276
+ # The <tt>Multi-Status (WebDAV)</tt> response indicates that the server
277
+ # has received the request,
278
+ # and that the message body can contain a number of separate response codes.
279
+ #
280
+ # :include: doc/net-http/included_getters.rdoc
281
+ #
282
+ # References:
283
+ #
284
+ # - {RFC 4818}[https://www.rfc-editor.org/rfc/rfc4918#section-11.1].
285
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#207].
286
+ #
287
+ class HTTPMultiStatus < HTTPSuccess
288
+ HAS_BODY = true
289
+ end
290
+
291
+ # Response class for <tt>Already Reported (WebDAV)</tt> responses (status code 208).
292
+ #
293
+ # The <tt>Already Reported (WebDAV)</tt> response indicates that the server
294
+ # has received the request,
295
+ # and that the members of a DAV binding have already been enumerated
296
+ # in a preceding part of the (multi-status) response,
297
+ # and are not being included again.
298
+ #
299
+ # :include: doc/net-http/included_getters.rdoc
300
+ #
301
+ # References:
302
+ #
303
+ # - {RFC 5842}[https://www.rfc-editor.org/rfc/rfc5842.html#section-7.1].
304
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#208].
305
+ #
306
+ class HTTPAlreadyReported < HTTPSuccess
307
+ HAS_BODY = true
308
+ end
309
+
310
+ # Response class for <tt>IM Used</tt> responses (status code 226).
311
+ #
312
+ # The <tt>IM Used</tt> response indicates that the server has fulfilled a request
313
+ # for the resource, and the response is a representation of the result
314
+ # of one or more instance-manipulations applied to the current instance.
315
+ #
316
+ # :include: doc/net-http/included_getters.rdoc
317
+ #
318
+ # References:
319
+ #
320
+ # - {RFC 3229}[https://www.rfc-editor.org/rfc/rfc3229.html#section-10.4.1].
321
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#226].
322
+ #
323
+ class HTTPIMUsed < HTTPSuccess
324
+ HAS_BODY = true
325
+ end
326
+
327
+ # Response class for <tt>Multiple Choices</tt> responses (status code 300).
328
+ #
329
+ # The <tt>Multiple Choices</tt> response indicates that the server
330
+ # offers multiple options for the resource from which the client may choose.
331
+ #
332
+ # :include: doc/net-http/included_getters.rdoc
333
+ #
334
+ # References:
335
+ #
336
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/300].
337
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-300-multiple-choices].
338
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#300].
339
+ #
340
+ class HTTPMultipleChoices < HTTPRedirection
341
+ HAS_BODY = true
342
+ end
343
+ HTTPMultipleChoice = HTTPMultipleChoices
344
+
345
+ # Response class for <tt>Moved Permanently</tt> responses (status code 301).
346
+ #
347
+ # The <tt>Moved Permanently</tt> response indicates that links or records
348
+ # returning this response should be updated to use the given URL.
349
+ #
350
+ # :include: doc/net-http/included_getters.rdoc
351
+ #
352
+ # References:
353
+ #
354
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/301].
355
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-301-moved-permanently].
356
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#301].
357
+ #
358
+ class HTTPMovedPermanently < HTTPRedirection
359
+ HAS_BODY = true
360
+ end
361
+
362
+ # Response class for <tt>Found</tt> responses (status code 302).
363
+ #
364
+ # The <tt>Found</tt> response indicates that the client
365
+ # should look at (browse to) another URL.
366
+ #
367
+ # :include: doc/net-http/included_getters.rdoc
368
+ #
369
+ # References:
370
+ #
371
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/302].
372
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-302-found].
373
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#302].
374
+ #
375
+ class HTTPFound < HTTPRedirection
376
+ HAS_BODY = true
377
+ end
378
+ HTTPMovedTemporarily = HTTPFound
379
+
380
+ # Response class for <tt>See Other</tt> responses (status code 303).
381
+ #
382
+ # The response to the request can be found under another URI using the GET method.
383
+ #
384
+ # :include: doc/net-http/included_getters.rdoc
385
+ #
386
+ # References:
387
+ #
388
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/303].
389
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-303-see-other].
390
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#303].
391
+ #
392
+ class HTTPSeeOther < HTTPRedirection
393
+ HAS_BODY = true
394
+ end
395
+
396
+ # Response class for <tt>Not Modified</tt> responses (status code 304).
397
+ #
398
+ # Indicates that the resource has not been modified since the version
399
+ # specified by the request headers.
400
+ #
401
+ # :include: doc/net-http/included_getters.rdoc
402
+ #
403
+ # References:
404
+ #
405
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/304].
406
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-304-not-modified].
407
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#304].
408
+ #
409
+ class HTTPNotModified < HTTPRedirection
410
+ HAS_BODY = false
411
+ end
412
+
413
+ # Response class for <tt>Use Proxy</tt> responses (status code 305).
414
+ #
415
+ # The requested resource is available only through a proxy,
416
+ # whose address is provided in the response.
417
+ #
418
+ # :include: doc/net-http/included_getters.rdoc
419
+ #
420
+ # References:
421
+ #
422
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-305-use-proxy].
423
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#305].
424
+ #
425
+ class HTTPUseProxy < HTTPRedirection
426
+ HAS_BODY = false
427
+ end
428
+
429
+ # Response class for <tt>Temporary Redirect</tt> responses (status code 307).
430
+ #
431
+ # The request should be repeated with another URI;
432
+ # however, future requests should still use the original URI.
433
+ #
434
+ # :include: doc/net-http/included_getters.rdoc
435
+ #
436
+ # References:
437
+ #
438
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/307].
439
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-307-temporary-redirect].
440
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#307].
441
+ #
442
+ class HTTPTemporaryRedirect < HTTPRedirection
443
+ HAS_BODY = true
444
+ end
445
+
446
+ # Response class for <tt>Permanent Redirect</tt> responses (status code 308).
447
+ #
448
+ # This and all future requests should be directed to the given URI.
449
+ #
450
+ # :include: doc/net-http/included_getters.rdoc
451
+ #
452
+ # References:
453
+ #
454
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308].
455
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-308-permanent-redirect].
456
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#308].
457
+ #
458
+ class HTTPPermanentRedirect < HTTPRedirection
459
+ HAS_BODY = true
460
+ end
461
+
462
+ # Response class for <tt>Bad Request</tt> responses (status code 400).
463
+ #
464
+ # The server cannot or will not process the request due to an apparent client error.
465
+ #
466
+ # :include: doc/net-http/included_getters.rdoc
467
+ #
468
+ # References:
469
+ #
470
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/400].
471
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-400-bad-request].
472
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#400].
473
+ #
474
+ class HTTPBadRequest < HTTPClientError
475
+ HAS_BODY = true
476
+ end
477
+
478
+ # Response class for <tt>Unauthorized</tt> responses (status code 401).
479
+ #
480
+ # Authentication is required, but either was not provided or failed.
481
+ #
482
+ # :include: doc/net-http/included_getters.rdoc
483
+ #
484
+ # References:
485
+ #
486
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/401].
487
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-401-unauthorized].
488
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#401].
489
+ #
490
+ class HTTPUnauthorized < HTTPClientError
491
+ HAS_BODY = true
492
+ end
493
+
494
+ # Response class for <tt>Payment Required</tt> responses (status code 402).
495
+ #
496
+ # Reserved for future use.
497
+ #
498
+ # :include: doc/net-http/included_getters.rdoc
499
+ #
500
+ # References:
501
+ #
502
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/402].
503
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-402-payment-required].
504
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#402].
505
+ #
506
+ class HTTPPaymentRequired < HTTPClientError
507
+ HAS_BODY = true
508
+ end
509
+
510
+ # Response class for <tt>Forbidden</tt> responses (status code 403).
511
+ #
512
+ # The request contained valid data and was understood by the server,
513
+ # but the server is refusing action.
514
+ #
515
+ # :include: doc/net-http/included_getters.rdoc
516
+ #
517
+ # References:
518
+ #
519
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/403].
520
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-403-forbidden].
521
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#403].
522
+ #
523
+ class HTTPForbidden < HTTPClientError
524
+ HAS_BODY = true
525
+ end
526
+
527
+ # Response class for <tt>Not Found</tt> responses (status code 404).
528
+ #
529
+ # The requested resource could not be found but may be available in the future.
530
+ #
531
+ # :include: doc/net-http/included_getters.rdoc
532
+ #
533
+ # References:
534
+ #
535
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404].
536
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-404-not-found].
537
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#404].
538
+ #
539
+ class HTTPNotFound < HTTPClientError
540
+ HAS_BODY = true
541
+ end
542
+
543
+ # Response class for <tt>Method Not Allowed</tt> responses (status code 405).
544
+ #
545
+ # The request method is not supported for the requested resource.
546
+ #
547
+ # :include: doc/net-http/included_getters.rdoc
548
+ #
549
+ # References:
550
+ #
551
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/405].
552
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-405-method-not-allowed].
553
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#405].
554
+ #
555
+ class HTTPMethodNotAllowed < HTTPClientError
556
+ HAS_BODY = true
557
+ end
558
+
559
+ # Response class for <tt>Not Acceptable</tt> responses (status code 406).
560
+ #
561
+ # The requested resource is capable of generating only content
562
+ # that not acceptable according to the Accept headers sent in the request.
563
+ #
564
+ # :include: doc/net-http/included_getters.rdoc
565
+ #
566
+ # References:
567
+ #
568
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/406].
569
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-406-not-acceptable].
570
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#406].
571
+ #
572
+ class HTTPNotAcceptable < HTTPClientError
573
+ HAS_BODY = true
574
+ end
575
+
576
+ # Response class for <tt>Proxy Authentication Required</tt> responses (status code 407).
577
+ #
578
+ # The client must first authenticate itself with the proxy.
579
+ #
580
+ # :include: doc/net-http/included_getters.rdoc
581
+ #
582
+ # References:
583
+ #
584
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/407].
585
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-407-proxy-authentication-re].
586
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#407].
587
+ #
588
+ class HTTPProxyAuthenticationRequired < HTTPClientError
589
+ HAS_BODY = true
590
+ end
591
+
592
+ # Response class for <tt>Request Gem::Timeout</tt> responses (status code 408).
593
+ #
594
+ # The server timed out waiting for the request.
595
+ #
596
+ # :include: doc/net-http/included_getters.rdoc
597
+ #
598
+ # References:
599
+ #
600
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408].
601
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-408-request-timeout].
602
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#408].
603
+ #
604
+ class HTTPRequestTimeout < HTTPClientError
605
+ HAS_BODY = true
606
+ end
607
+ HTTPRequestTimeOut = HTTPRequestTimeout
608
+
609
+ # Response class for <tt>Conflict</tt> responses (status code 409).
610
+ #
611
+ # The request could not be processed because of conflict in the current state of the resource.
612
+ #
613
+ # :include: doc/net-http/included_getters.rdoc
614
+ #
615
+ # References:
616
+ #
617
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/409].
618
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-409-conflict].
619
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#409].
620
+ #
621
+ class HTTPConflict < HTTPClientError
622
+ HAS_BODY = true
623
+ end
624
+
625
+ # Response class for <tt>Gone</tt> responses (status code 410).
626
+ #
627
+ # The resource requested was previously in use but is no longer available
628
+ # and will not be available again.
629
+ #
630
+ # :include: doc/net-http/included_getters.rdoc
631
+ #
632
+ # References:
633
+ #
634
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/410].
635
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-410-gone].
636
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#410].
637
+ #
638
+ class HTTPGone < HTTPClientError
639
+ HAS_BODY = true
640
+ end
641
+
642
+ # Response class for <tt>Length Required</tt> responses (status code 411).
643
+ #
644
+ # The request did not specify the length of its content,
645
+ # which is required by the requested resource.
646
+ #
647
+ # :include: doc/net-http/included_getters.rdoc
648
+ #
649
+ # References:
650
+ #
651
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/411].
652
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-411-length-required].
653
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#411].
654
+ #
655
+ class HTTPLengthRequired < HTTPClientError
656
+ HAS_BODY = true
657
+ end
658
+
659
+ # Response class for <tt>Precondition Failed</tt> responses (status code 412).
660
+ #
661
+ # The server does not meet one of the preconditions
662
+ # specified in the request headers.
663
+ #
664
+ # :include: doc/net-http/included_getters.rdoc
665
+ #
666
+ # References:
667
+ #
668
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/412].
669
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-412-precondition-failed].
670
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#412].
671
+ #
672
+ class HTTPPreconditionFailed < HTTPClientError
673
+ HAS_BODY = true
674
+ end
675
+
676
+ # Response class for <tt>Payload Too Large</tt> responses (status code 413).
677
+ #
678
+ # The request is larger than the server is willing or able to process.
679
+ #
680
+ # :include: doc/net-http/included_getters.rdoc
681
+ #
682
+ # References:
683
+ #
684
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/413].
685
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-413-content-too-large].
686
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#413].
687
+ #
688
+ class HTTPPayloadTooLarge < HTTPClientError
689
+ HAS_BODY = true
690
+ end
691
+ HTTPRequestEntityTooLarge = HTTPPayloadTooLarge
692
+
693
+ # Response class for <tt>URI Too Long</tt> responses (status code 414).
694
+ #
695
+ # The URI provided was too long for the server to process.
696
+ #
697
+ # :include: doc/net-http/included_getters.rdoc
698
+ #
699
+ # References:
700
+ #
701
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/414].
702
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-414-uri-too-long].
703
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#414].
704
+ #
705
+ class HTTPURITooLong < HTTPClientError
706
+ HAS_BODY = true
707
+ end
708
+ HTTPRequestURITooLong = HTTPURITooLong
709
+ HTTPRequestURITooLarge = HTTPRequestURITooLong
710
+
711
+ # Response class for <tt>Unsupported Media Type</tt> responses (status code 415).
712
+ #
713
+ # The request entity has a media type which the server or resource does not support.
714
+ #
715
+ # :include: doc/net-http/included_getters.rdoc
716
+ #
717
+ # References:
718
+ #
719
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/415].
720
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-415-unsupported-media-type].
721
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#415].
722
+ #
723
+ class HTTPUnsupportedMediaType < HTTPClientError
724
+ HAS_BODY = true
725
+ end
726
+
727
+ # Response class for <tt>Range Not Satisfiable</tt> responses (status code 416).
728
+ #
729
+ # The request entity has a media type which the server or resource does not support.
730
+ #
731
+ # :include: doc/net-http/included_getters.rdoc
732
+ #
733
+ # References:
734
+ #
735
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/416].
736
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-416-range-not-satisfiable].
737
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#416].
738
+ #
739
+ class HTTPRangeNotSatisfiable < HTTPClientError
740
+ HAS_BODY = true
741
+ end
742
+ HTTPRequestedRangeNotSatisfiable = HTTPRangeNotSatisfiable
743
+
744
+ # Response class for <tt>Expectation Failed</tt> responses (status code 417).
745
+ #
746
+ # The server cannot meet the requirements of the Expect request-header field.
747
+ #
748
+ # :include: doc/net-http/included_getters.rdoc
749
+ #
750
+ # References:
751
+ #
752
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/417].
753
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-417-expectation-failed].
754
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#417].
755
+ #
756
+ class HTTPExpectationFailed < HTTPClientError
757
+ HAS_BODY = true
758
+ end
759
+
760
+ # 418 I'm a teapot - RFC 2324; a joke RFC
761
+ # See https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#418.
762
+
763
+ # 420 Enhance Your Calm - Twitter
764
+
765
+ # Response class for <tt>Misdirected Request</tt> responses (status code 421).
766
+ #
767
+ # The request was directed at a server that is not able to produce a response.
768
+ #
769
+ # :include: doc/net-http/included_getters.rdoc
770
+ #
771
+ # References:
772
+ #
773
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-421-misdirected-request].
774
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#421].
775
+ #
776
+ class HTTPMisdirectedRequest < HTTPClientError
777
+ HAS_BODY = true
778
+ end
779
+
780
+ # Response class for <tt>Unprocessable Entity</tt> responses (status code 422).
781
+ #
782
+ # The request was well-formed but had semantic errors.
783
+ #
784
+ # :include: doc/net-http/included_getters.rdoc
785
+ #
786
+ # References:
787
+ #
788
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/422].
789
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-422-unprocessable-content].
790
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#422].
791
+ #
792
+ class HTTPUnprocessableEntity < HTTPClientError
793
+ HAS_BODY = true
794
+ end
795
+
796
+ # Response class for <tt>Locked (WebDAV)</tt> responses (status code 423).
797
+ #
798
+ # The requested resource is locked.
799
+ #
800
+ # :include: doc/net-http/included_getters.rdoc
801
+ #
802
+ # References:
803
+ #
804
+ # - {RFC 4918}[https://www.rfc-editor.org/rfc/rfc4918#section-11.3].
805
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#423].
806
+ #
807
+ class HTTPLocked < HTTPClientError
808
+ HAS_BODY = true
809
+ end
810
+
811
+ # Response class for <tt>Failed Dependency (WebDAV)</tt> responses (status code 424).
812
+ #
813
+ # The request failed because it depended on another request and that request failed.
814
+ # See {424 Failed Dependency (WebDAV)}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#424].
815
+ #
816
+ # :include: doc/net-http/included_getters.rdoc
817
+ #
818
+ # References:
819
+ #
820
+ # - {RFC 4918}[https://www.rfc-editor.org/rfc/rfc4918#section-11.4].
821
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#424].
822
+ #
823
+ class HTTPFailedDependency < HTTPClientError
824
+ HAS_BODY = true
825
+ end
826
+
827
+ # 425 Too Early
828
+ # https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#425.
829
+
830
+ # Response class for <tt>Upgrade Required</tt> responses (status code 426).
831
+ #
832
+ # The client should switch to the protocol given in the Upgrade header field.
833
+ #
834
+ # :include: doc/net-http/included_getters.rdoc
835
+ #
836
+ # References:
837
+ #
838
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/426].
839
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-426-upgrade-required].
840
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#426].
841
+ #
842
+ class HTTPUpgradeRequired < HTTPClientError
843
+ HAS_BODY = true
844
+ end
845
+
846
+ # Response class for <tt>Precondition Required</tt> responses (status code 428).
847
+ #
848
+ # The origin server requires the request to be conditional.
849
+ #
850
+ # :include: doc/net-http/included_getters.rdoc
851
+ #
852
+ # References:
853
+ #
854
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/428].
855
+ # - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-3].
856
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#428].
857
+ #
858
+ class HTTPPreconditionRequired < HTTPClientError
859
+ HAS_BODY = true
860
+ end
861
+
862
+ # Response class for <tt>Too Many Requests</tt> responses (status code 429).
863
+ #
864
+ # The user has sent too many requests in a given amount of time.
865
+ #
866
+ # :include: doc/net-http/included_getters.rdoc
867
+ #
868
+ # References:
869
+ #
870
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429].
871
+ # - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-4].
872
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#429].
873
+ #
874
+ class HTTPTooManyRequests < HTTPClientError
875
+ HAS_BODY = true
876
+ end
877
+
878
+ # Response class for <tt>Request Header Fields Too Large</tt> responses (status code 431).
879
+ #
880
+ # An individual header field is too large,
881
+ # or all the header fields collectively, are too large.
882
+ #
883
+ # :include: doc/net-http/included_getters.rdoc
884
+ #
885
+ # References:
886
+ #
887
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/431].
888
+ # - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-5].
889
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#431].
890
+ #
891
+ class HTTPRequestHeaderFieldsTooLarge < HTTPClientError
892
+ HAS_BODY = true
893
+ end
894
+
895
+ # Response class for <tt>Unavailable For Legal Reasons</tt> responses (status code 451).
896
+ #
897
+ # A server operator has received a legal demand to deny access to a resource or to a set of resources
898
+ # that includes the requested resource.
899
+ #
900
+ # :include: doc/net-http/included_getters.rdoc
901
+ #
902
+ # References:
903
+ #
904
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/451].
905
+ # - {RFC 7725}[https://www.rfc-editor.org/rfc/rfc7725.html#section-3].
906
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#451].
907
+ #
908
+ class HTTPUnavailableForLegalReasons < HTTPClientError
909
+ HAS_BODY = true
910
+ end
911
+ # 444 No Response - Nginx
912
+ # 449 Retry With - Microsoft
913
+ # 450 Blocked by Windows Parental Controls - Microsoft
914
+ # 499 Client Closed Request - Nginx
915
+
916
+ # Response class for <tt>Internal Server Error</tt> responses (status code 500).
917
+ #
918
+ # An unexpected condition was encountered and no more specific message is suitable.
919
+ #
920
+ # :include: doc/net-http/included_getters.rdoc
921
+ #
922
+ # References:
923
+ #
924
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500].
925
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-500-internal-server-error].
926
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#500].
927
+ #
928
+ class HTTPInternalServerError < HTTPServerError
929
+ HAS_BODY = true
930
+ end
931
+
932
+ # Response class for <tt>Not Implemented</tt> responses (status code 501).
933
+ #
934
+ # The server either does not recognize the request method,
935
+ # or it lacks the ability to fulfil the request.
936
+ #
937
+ # :include: doc/net-http/included_getters.rdoc
938
+ #
939
+ # References:
940
+ #
941
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/501].
942
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-501-not-implemented].
943
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#501].
944
+ #
945
+ class HTTPNotImplemented < HTTPServerError
946
+ HAS_BODY = true
947
+ end
948
+
949
+ # Response class for <tt>Bad Gateway</tt> responses (status code 502).
950
+ #
951
+ # The server was acting as a gateway or proxy
952
+ # and received an invalid response from the upstream server.
953
+ #
954
+ # :include: doc/net-http/included_getters.rdoc
955
+ #
956
+ # References:
957
+ #
958
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/502].
959
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-502-bad-gateway].
960
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#502].
961
+ #
962
+ class HTTPBadGateway < HTTPServerError
963
+ HAS_BODY = true
964
+ end
965
+
966
+ # Response class for <tt>Service Unavailable</tt> responses (status code 503).
967
+ #
968
+ # The server cannot handle the request
969
+ # (because it is overloaded or down for maintenance).
970
+ #
971
+ # :include: doc/net-http/included_getters.rdoc
972
+ #
973
+ # References:
974
+ #
975
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/503].
976
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-503-service-unavailable].
977
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#503].
978
+ #
979
+ class HTTPServiceUnavailable < HTTPServerError
980
+ HAS_BODY = true
981
+ end
982
+
983
+ # Response class for <tt>Gateway Gem::Timeout</tt> responses (status code 504).
984
+ #
985
+ # The server was acting as a gateway or proxy
986
+ # and did not receive a timely response from the upstream server.
987
+ #
988
+ # :include: doc/net-http/included_getters.rdoc
989
+ #
990
+ # References:
991
+ #
992
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/504].
993
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-504-gateway-timeout].
994
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#504].
995
+ #
996
+ class HTTPGatewayTimeout < HTTPServerError
997
+ HAS_BODY = true
998
+ end
999
+ HTTPGatewayTimeOut = HTTPGatewayTimeout
1000
+
1001
+ # Response class for <tt>HTTP Version Not Supported</tt> responses (status code 505).
1002
+ #
1003
+ # The server does not support the HTTP version used in the request.
1004
+ #
1005
+ # :include: doc/net-http/included_getters.rdoc
1006
+ #
1007
+ # References:
1008
+ #
1009
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/505].
1010
+ # - {RFC 9110}[https://www.rfc-editor.org/rfc/rfc9110.html#name-505-http-version-not-suppor].
1011
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#505].
1012
+ #
1013
+ class HTTPVersionNotSupported < HTTPServerError
1014
+ HAS_BODY = true
1015
+ end
1016
+
1017
+ # Response class for <tt>Variant Also Negotiates</tt> responses (status code 506).
1018
+ #
1019
+ # Transparent content negotiation for the request results in a circular reference.
1020
+ #
1021
+ # :include: doc/net-http/included_getters.rdoc
1022
+ #
1023
+ # References:
1024
+ #
1025
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/506].
1026
+ # - {RFC 2295}[https://www.rfc-editor.org/rfc/rfc2295#section-8.1].
1027
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#506].
1028
+ #
1029
+ class HTTPVariantAlsoNegotiates < HTTPServerError
1030
+ HAS_BODY = true
1031
+ end
1032
+
1033
+ # Response class for <tt>Insufficient Storage (WebDAV)</tt> responses (status code 507).
1034
+ #
1035
+ # The server is unable to store the representation needed to complete the request.
1036
+ #
1037
+ # :include: doc/net-http/included_getters.rdoc
1038
+ #
1039
+ # References:
1040
+ #
1041
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/507].
1042
+ # - {RFC 4918}[https://www.rfc-editor.org/rfc/rfc4918#section-11.5].
1043
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#507].
1044
+ #
1045
+ class HTTPInsufficientStorage < HTTPServerError
1046
+ HAS_BODY = true
1047
+ end
1048
+
1049
+ # Response class for <tt>Loop Detected (WebDAV)</tt> responses (status code 508).
1050
+ #
1051
+ # The server detected an infinite loop while processing the request.
1052
+ #
1053
+ # :include: doc/net-http/included_getters.rdoc
1054
+ #
1055
+ # References:
1056
+ #
1057
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/508].
1058
+ # - {RFC 5942}[https://www.rfc-editor.org/rfc/rfc5842.html#section-7.2].
1059
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#508].
1060
+ #
1061
+ class HTTPLoopDetected < HTTPServerError
1062
+ HAS_BODY = true
1063
+ end
1064
+ # 509 Bandwidth Limit Exceeded - Apache bw/limited extension
1065
+
1066
+ # Response class for <tt>Not Extended</tt> responses (status code 510).
1067
+ #
1068
+ # Further extensions to the request are required for the server to fulfill it.
1069
+ #
1070
+ # :include: doc/net-http/included_getters.rdoc
1071
+ #
1072
+ # References:
1073
+ #
1074
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/510].
1075
+ # - {RFC 2774}[https://www.rfc-editor.org/rfc/rfc2774.html#section-7].
1076
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#510].
1077
+ #
1078
+ class HTTPNotExtended < HTTPServerError
1079
+ HAS_BODY = true
1080
+ end
1081
+
1082
+ # Response class for <tt>Network Authentication Required</tt> responses (status code 511).
1083
+ #
1084
+ # The client needs to authenticate to gain network access.
1085
+ #
1086
+ # :include: doc/net-http/included_getters.rdoc
1087
+ #
1088
+ # References:
1089
+ #
1090
+ # - {Mozilla}[https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511].
1091
+ # - {RFC 6585}[https://www.rfc-editor.org/rfc/rfc6585#section-6].
1092
+ # - {Wikipedia}[https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#511].
1093
+ #
1094
+ class HTTPNetworkAuthenticationRequired < HTTPServerError
1095
+ HAS_BODY = true
1096
+ end
1097
+
1098
+ end
1099
+
1100
+ class Gem::Net::HTTPResponse
1101
+ CODE_CLASS_TO_OBJ = {
1102
+ '1' => Gem::Net::HTTPInformation,
1103
+ '2' => Gem::Net::HTTPSuccess,
1104
+ '3' => Gem::Net::HTTPRedirection,
1105
+ '4' => Gem::Net::HTTPClientError,
1106
+ '5' => Gem::Net::HTTPServerError
1107
+ }
1108
+ CODE_TO_OBJ = {
1109
+ '100' => Gem::Net::HTTPContinue,
1110
+ '101' => Gem::Net::HTTPSwitchProtocol,
1111
+ '102' => Gem::Net::HTTPProcessing,
1112
+ '103' => Gem::Net::HTTPEarlyHints,
1113
+
1114
+ '200' => Gem::Net::HTTPOK,
1115
+ '201' => Gem::Net::HTTPCreated,
1116
+ '202' => Gem::Net::HTTPAccepted,
1117
+ '203' => Gem::Net::HTTPNonAuthoritativeInformation,
1118
+ '204' => Gem::Net::HTTPNoContent,
1119
+ '205' => Gem::Net::HTTPResetContent,
1120
+ '206' => Gem::Net::HTTPPartialContent,
1121
+ '207' => Gem::Net::HTTPMultiStatus,
1122
+ '208' => Gem::Net::HTTPAlreadyReported,
1123
+ '226' => Gem::Net::HTTPIMUsed,
1124
+
1125
+ '300' => Gem::Net::HTTPMultipleChoices,
1126
+ '301' => Gem::Net::HTTPMovedPermanently,
1127
+ '302' => Gem::Net::HTTPFound,
1128
+ '303' => Gem::Net::HTTPSeeOther,
1129
+ '304' => Gem::Net::HTTPNotModified,
1130
+ '305' => Gem::Net::HTTPUseProxy,
1131
+ '307' => Gem::Net::HTTPTemporaryRedirect,
1132
+ '308' => Gem::Net::HTTPPermanentRedirect,
1133
+
1134
+ '400' => Gem::Net::HTTPBadRequest,
1135
+ '401' => Gem::Net::HTTPUnauthorized,
1136
+ '402' => Gem::Net::HTTPPaymentRequired,
1137
+ '403' => Gem::Net::HTTPForbidden,
1138
+ '404' => Gem::Net::HTTPNotFound,
1139
+ '405' => Gem::Net::HTTPMethodNotAllowed,
1140
+ '406' => Gem::Net::HTTPNotAcceptable,
1141
+ '407' => Gem::Net::HTTPProxyAuthenticationRequired,
1142
+ '408' => Gem::Net::HTTPRequestTimeout,
1143
+ '409' => Gem::Net::HTTPConflict,
1144
+ '410' => Gem::Net::HTTPGone,
1145
+ '411' => Gem::Net::HTTPLengthRequired,
1146
+ '412' => Gem::Net::HTTPPreconditionFailed,
1147
+ '413' => Gem::Net::HTTPPayloadTooLarge,
1148
+ '414' => Gem::Net::HTTPURITooLong,
1149
+ '415' => Gem::Net::HTTPUnsupportedMediaType,
1150
+ '416' => Gem::Net::HTTPRangeNotSatisfiable,
1151
+ '417' => Gem::Net::HTTPExpectationFailed,
1152
+ '421' => Gem::Net::HTTPMisdirectedRequest,
1153
+ '422' => Gem::Net::HTTPUnprocessableEntity,
1154
+ '423' => Gem::Net::HTTPLocked,
1155
+ '424' => Gem::Net::HTTPFailedDependency,
1156
+ '426' => Gem::Net::HTTPUpgradeRequired,
1157
+ '428' => Gem::Net::HTTPPreconditionRequired,
1158
+ '429' => Gem::Net::HTTPTooManyRequests,
1159
+ '431' => Gem::Net::HTTPRequestHeaderFieldsTooLarge,
1160
+ '451' => Gem::Net::HTTPUnavailableForLegalReasons,
1161
+
1162
+ '500' => Gem::Net::HTTPInternalServerError,
1163
+ '501' => Gem::Net::HTTPNotImplemented,
1164
+ '502' => Gem::Net::HTTPBadGateway,
1165
+ '503' => Gem::Net::HTTPServiceUnavailable,
1166
+ '504' => Gem::Net::HTTPGatewayTimeout,
1167
+ '505' => Gem::Net::HTTPVersionNotSupported,
1168
+ '506' => Gem::Net::HTTPVariantAlsoNegotiates,
1169
+ '507' => Gem::Net::HTTPInsufficientStorage,
1170
+ '508' => Gem::Net::HTTPLoopDetected,
1171
+ '510' => Gem::Net::HTTPNotExtended,
1172
+ '511' => Gem::Net::HTTPNetworkAuthenticationRequired,
1173
+ }
1174
+ end