rubygems-update 3.3.18 → 3.6.2
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/CHANGELOG.md +2182 -1067
- data/CODE_OF_CONDUCT.md +79 -28
- data/Manifest.txt +184 -290
- data/README.md +35 -19
- data/bundler/CHANGELOG.md +1003 -3
- data/bundler/README.md +3 -7
- data/bundler/bundler.gemspec +11 -11
- data/bundler/exe/bundle +5 -25
- data/bundler/lib/bundler/build_metadata.rb +3 -3
- data/bundler/lib/bundler/capistrano.rb +1 -1
- data/bundler/lib/bundler/checksum.rb +254 -0
- data/bundler/lib/bundler/ci_detector.rb +75 -0
- data/bundler/lib/bundler/cli/add.rb +7 -5
- data/bundler/lib/bundler/cli/binstubs.rb +10 -6
- data/bundler/lib/bundler/cli/cache.rb +1 -1
- data/bundler/lib/bundler/cli/check.rb +4 -4
- data/bundler/lib/bundler/cli/common.rb +11 -1
- data/bundler/lib/bundler/cli/config.rb +8 -7
- data/bundler/lib/bundler/cli/console.rb +2 -5
- data/bundler/lib/bundler/cli/doctor.rb +10 -12
- data/bundler/lib/bundler/cli/exec.rb +2 -1
- data/bundler/lib/bundler/cli/fund.rb +1 -1
- data/bundler/lib/bundler/cli/gem.rb +77 -53
- data/bundler/lib/bundler/cli/info.rb +4 -15
- data/bundler/lib/bundler/cli/init.rb +6 -2
- data/bundler/lib/bundler/cli/inject.rb +1 -1
- data/bundler/lib/bundler/cli/install.rb +27 -15
- data/bundler/lib/bundler/cli/issue.rb +1 -1
- data/bundler/lib/bundler/cli/lock.rb +54 -28
- data/bundler/lib/bundler/cli/open.rb +9 -9
- data/bundler/lib/bundler/cli/outdated.rb +34 -29
- data/bundler/lib/bundler/cli/platform.rb +7 -5
- data/bundler/lib/bundler/cli/plugin.rb +9 -15
- data/bundler/lib/bundler/cli/pristine.rb +38 -30
- data/bundler/lib/bundler/cli/show.rb +4 -4
- data/bundler/lib/bundler/cli/update.rb +6 -5
- data/bundler/lib/bundler/cli/viz.rb +1 -1
- data/bundler/lib/bundler/cli.rb +258 -307
- data/bundler/lib/bundler/compact_index_client/cache.rb +55 -60
- data/bundler/lib/bundler/compact_index_client/cache_file.rb +148 -0
- data/bundler/lib/bundler/compact_index_client/gem_parser.rb +7 -3
- data/bundler/lib/bundler/compact_index_client/parser.rb +84 -0
- data/bundler/lib/bundler/compact_index_client/updater.rb +71 -83
- data/bundler/lib/bundler/compact_index_client.rb +58 -80
- data/bundler/lib/bundler/constants.rb +9 -2
- data/bundler/lib/bundler/current_ruby.rb +11 -16
- data/bundler/lib/bundler/definition.rb +547 -228
- data/bundler/lib/bundler/dependency.rb +30 -87
- data/bundler/lib/bundler/digest.rb +3 -3
- data/bundler/lib/bundler/dsl.rb +115 -65
- data/bundler/lib/bundler/endpoint_specification.rb +27 -14
- data/bundler/lib/bundler/env.rb +5 -7
- data/bundler/lib/bundler/environment_preserver.rb +8 -25
- data/bundler/lib/bundler/errors.rb +85 -11
- data/bundler/lib/bundler/feature_flag.rb +1 -2
- data/bundler/lib/bundler/fetcher/base.rb +5 -3
- data/bundler/lib/bundler/fetcher/compact_index.rb +28 -43
- data/bundler/lib/bundler/fetcher/dependency.rb +3 -7
- data/bundler/lib/bundler/fetcher/downloader.rb +17 -16
- data/bundler/lib/bundler/fetcher/gem_remote_fetcher.rb +16 -0
- data/bundler/lib/bundler/fetcher/index.rb +2 -3
- data/bundler/lib/bundler/fetcher.rb +91 -74
- data/bundler/lib/bundler/force_platform.rb +16 -0
- data/bundler/lib/bundler/friendly_errors.rb +6 -9
- data/bundler/lib/bundler/gem_helper.rb +5 -6
- data/bundler/lib/bundler/gem_helpers.rb +45 -7
- data/bundler/lib/bundler/gem_version_promoter.rb +68 -109
- data/bundler/lib/bundler/graph.rb +9 -9
- data/bundler/lib/bundler/index.rb +69 -73
- data/bundler/lib/bundler/injector.rb +12 -13
- data/bundler/lib/bundler/inline.rb +40 -17
- data/bundler/lib/bundler/installer/gem_installer.rb +13 -12
- data/bundler/lib/bundler/installer/parallel_installer.rb +19 -66
- data/bundler/lib/bundler/installer/standalone.rb +29 -15
- data/bundler/lib/bundler/installer.rb +27 -77
- data/bundler/lib/bundler/lazy_specification.rb +134 -71
- data/bundler/lib/bundler/lockfile_generator.rb +13 -4
- data/bundler/lib/bundler/lockfile_parser.rb +134 -61
- data/bundler/lib/bundler/man/bundle-add.1 +46 -48
- data/bundler/lib/bundler/man/bundle-add.1.ronn +54 -22
- data/bundler/lib/bundler/man/bundle-binstubs.1 +10 -19
- data/bundler/lib/bundler/man/bundle-binstubs.1.ronn +6 -3
- data/bundler/lib/bundler/man/bundle-cache.1 +38 -25
- data/bundler/lib/bundler/man/bundle-cache.1.ronn +40 -4
- data/bundler/lib/bundler/man/bundle-check.1 +7 -14
- data/bundler/lib/bundler/man/bundle-check.1.ronn +7 -2
- data/bundler/lib/bundler/man/bundle-clean.1 +4 -11
- data/bundler/lib/bundler/man/bundle-clean.1.ronn +1 -1
- data/bundler/lib/bundler/man/bundle-config.1 +41 -220
- data/bundler/lib/bundler/man/bundle-config.1.ronn +27 -22
- data/bundler/lib/bundler/man/bundle-console.1 +33 -0
- data/bundler/lib/bundler/man/bundle-console.1.ronn +39 -0
- data/bundler/lib/bundler/man/bundle-doctor.1 +5 -19
- data/bundler/lib/bundler/man/bundle-doctor.1.ronn +1 -1
- data/bundler/lib/bundler/man/bundle-env.1 +9 -0
- data/bundler/lib/bundler/man/bundle-env.1.ronn +10 -0
- data/bundler/lib/bundler/man/bundle-exec.1 +20 -78
- data/bundler/lib/bundler/man/bundle-exec.1.ronn +12 -10
- data/bundler/lib/bundler/man/bundle-fund.1 +22 -0
- data/bundler/lib/bundler/man/bundle-fund.1.ronn +25 -0
- data/bundler/lib/bundler/man/bundle-gem.1 +53 -81
- data/bundler/lib/bundler/man/bundle-gem.1.ronn +41 -9
- data/bundler/lib/bundler/man/bundle-help.1 +9 -0
- data/bundler/lib/bundler/man/bundle-help.1.ronn +12 -0
- data/bundler/lib/bundler/man/bundle-info.1 +8 -11
- data/bundler/lib/bundler/man/bundle-info.1.ronn +9 -5
- data/bundler/lib/bundler/man/bundle-init.1 +7 -12
- data/bundler/lib/bundler/man/bundle-init.1.ronn +4 -1
- data/bundler/lib/bundler/man/bundle-inject.1 +17 -19
- data/bundler/lib/bundler/man/bundle-inject.1.ronn +12 -2
- data/bundler/lib/bundler/man/bundle-install.1 +42 -162
- data/bundler/lib/bundler/man/bundle-install.1.ronn +31 -49
- data/bundler/lib/bundler/man/bundle-issue.1 +45 -0
- data/bundler/lib/bundler/man/bundle-issue.1.ronn +37 -0
- data/bundler/lib/bundler/man/bundle-licenses.1 +9 -0
- data/bundler/lib/bundler/man/bundle-licenses.1.ronn +10 -0
- data/bundler/lib/bundler/man/bundle-list.1 +4 -19
- data/bundler/lib/bundler/man/bundle-list.1.ronn +4 -1
- data/bundler/lib/bundler/man/bundle-lock.1 +25 -34
- data/bundler/lib/bundler/man/bundle-lock.1.ronn +25 -4
- data/bundler/lib/bundler/man/bundle-open.1 +18 -18
- data/bundler/lib/bundler/man/bundle-open.1.ronn +10 -1
- data/bundler/lib/bundler/man/bundle-outdated.1 +22 -67
- data/bundler/lib/bundler/man/bundle-outdated.1.ronn +20 -12
- data/bundler/lib/bundler/man/bundle-platform.1 +16 -28
- data/bundler/lib/bundler/man/bundle-platform.1.ronn +14 -7
- data/bundler/lib/bundler/man/bundle-plugin.1 +58 -0
- data/bundler/lib/bundler/man/bundle-plugin.1.ronn +63 -0
- data/bundler/lib/bundler/man/bundle-pristine.1 +5 -16
- data/bundler/lib/bundler/man/bundle-pristine.1.ronn +1 -1
- data/bundler/lib/bundler/man/bundle-remove.1 +4 -14
- data/bundler/lib/bundler/man/bundle-remove.1.ronn +1 -1
- data/bundler/lib/bundler/man/bundle-show.1 +7 -11
- data/bundler/lib/bundler/man/bundle-show.1.ronn +4 -0
- data/bundler/lib/bundler/man/bundle-update.1 +30 -143
- data/bundler/lib/bundler/man/bundle-update.1.ronn +14 -6
- data/bundler/lib/bundler/man/bundle-version.1 +22 -0
- data/bundler/lib/bundler/man/bundle-version.1.ronn +24 -0
- data/bundler/lib/bundler/man/bundle-viz.1 +9 -18
- data/bundler/lib/bundler/man/bundle-viz.1.ronn +9 -3
- data/bundler/lib/bundler/man/bundle.1 +17 -51
- data/bundler/lib/bundler/man/bundle.1.ronn +12 -7
- data/bundler/lib/bundler/man/gemfile.5 +77 -341
- data/bundler/lib/bundler/man/gemfile.5.ronn +73 -54
- data/bundler/lib/bundler/man/index.txt +8 -0
- data/bundler/lib/bundler/match_metadata.rb +17 -0
- data/bundler/lib/bundler/match_platform.rb +1 -1
- data/bundler/lib/bundler/match_remote_metadata.rb +29 -0
- data/bundler/lib/bundler/materialization.rb +59 -0
- data/bundler/lib/bundler/mirror.rb +8 -10
- data/bundler/lib/bundler/plugin/api/source.rb +7 -5
- data/bundler/lib/bundler/plugin/events.rb +24 -0
- data/bundler/lib/bundler/plugin/index.rb +13 -5
- data/bundler/lib/bundler/plugin/installer/path.rb +18 -0
- data/bundler/lib/bundler/plugin/installer/rubygems.rb +0 -4
- data/bundler/lib/bundler/plugin/installer.rb +42 -19
- data/bundler/lib/bundler/plugin/source_list.rb +4 -4
- data/bundler/lib/bundler/plugin.rb +35 -7
- data/bundler/lib/bundler/process_lock.rb +10 -14
- data/bundler/lib/bundler/remote_specification.rb +17 -13
- data/bundler/lib/bundler/resolver/base.rb +117 -0
- data/bundler/lib/bundler/resolver/candidate.rb +82 -0
- data/bundler/lib/bundler/resolver/incompatibility.rb +15 -0
- data/bundler/lib/bundler/resolver/package.rb +90 -0
- data/bundler/lib/bundler/resolver/root.rb +25 -0
- data/bundler/lib/bundler/resolver/spec_group.rb +54 -67
- data/bundler/lib/bundler/resolver.rb +432 -329
- data/bundler/lib/bundler/retry.rb +2 -2
- data/bundler/lib/bundler/ruby_dsl.rb +42 -7
- data/bundler/lib/bundler/ruby_version.rb +23 -10
- data/bundler/lib/bundler/rubygems_ext.rb +286 -81
- data/bundler/lib/bundler/rubygems_gem_installer.rb +77 -68
- data/bundler/lib/bundler/rubygems_integration.rb +57 -155
- data/bundler/lib/bundler/runtime.rb +28 -17
- data/bundler/lib/bundler/safe_marshal.rb +31 -0
- data/bundler/lib/bundler/self_manager.rb +50 -12
- data/bundler/lib/bundler/settings.rb +144 -58
- data/bundler/lib/bundler/setup.rb +13 -1
- data/bundler/lib/bundler/shared_helpers.rb +87 -36
- data/bundler/lib/bundler/source/git/git_proxy.rb +278 -80
- data/bundler/lib/bundler/source/git.rb +161 -68
- data/bundler/lib/bundler/source/metadata.rb +16 -16
- data/bundler/lib/bundler/source/path/installer.rb +1 -22
- data/bundler/lib/bundler/source/path.rb +16 -26
- data/bundler/lib/bundler/source/rubygems/remote.rb +1 -1
- data/bundler/lib/bundler/source/rubygems.rb +94 -154
- data/bundler/lib/bundler/source.rb +3 -1
- data/bundler/lib/bundler/source_list.rb +34 -4
- data/bundler/lib/bundler/spec_set.rb +195 -65
- data/bundler/lib/bundler/stub_specification.rb +34 -4
- data/bundler/lib/bundler/templates/Executable +1 -1
- data/bundler/lib/bundler/templates/Executable.bundler +6 -11
- data/bundler/lib/bundler/templates/Executable.standalone +2 -0
- data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +77 -29
- data/bundler/lib/bundler/templates/newgem/Cargo.toml.tt +7 -0
- data/bundler/lib/bundler/templates/newgem/README.md.tt +11 -5
- data/bundler/lib/bundler/templates/newgem/Rakefile.tt +19 -8
- data/bundler/lib/bundler/templates/newgem/bin/console.tt +0 -4
- data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +12 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +15 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf-c.rb.tt +10 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf-rust.rb.tt +6 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +1 -1
- data/bundler/lib/bundler/templates/newgem/ext/newgem/src/lib.rs.tt +12 -0
- data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -8
- data/bundler/lib/bundler/templates/newgem/gitignore.tt +3 -0
- data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +13 -4
- data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +12 -4
- data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +0 -5
- data/bundler/lib/bundler/templates/newgem/standard.yml.tt +1 -1
- data/bundler/lib/bundler/ui/rg_proxy.rb +1 -1
- data/bundler/lib/bundler/ui/shell.rb +60 -15
- data/bundler/lib/bundler/ui/silent.rb +33 -6
- data/bundler/lib/bundler/uri_credentials_filter.rb +3 -3
- data/bundler/lib/bundler/uri_normalizer.rb +23 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +3 -3
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +1 -1
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb +0 -1
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +56 -7
- data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +1350 -418
- data/bundler/lib/bundler/vendor/net-http-persistent/.document +1 -0
- data/bundler/lib/bundler/vendor/net-http-persistent/README.rdoc +1 -1
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +4 -3
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +23 -11
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +1 -1
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +102 -64
- data/bundler/lib/bundler/vendor/pub_grub/.document +1 -0
- data/bundler/lib/bundler/vendor/pub_grub/LICENSE.txt +21 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/assignment.rb +20 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/basic_package_source.rb +189 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/failure_writer.rb +182 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/incompatibility.rb +150 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/package.rb +43 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/partial_solution.rb +121 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/rubygems.rb +45 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/solve_failure.rb +19 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb +61 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/term.rb +105 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version.rb +3 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb +129 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb +411 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb +248 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_union.rb +178 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub.rb +31 -0
- data/bundler/lib/bundler/vendor/securerandom/.document +1 -0
- data/bundler/lib/bundler/vendor/securerandom/COPYING +56 -0
- data/bundler/lib/bundler/vendor/securerandom/lib/securerandom.rb +102 -0
- data/bundler/lib/bundler/vendor/thor/.document +1 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +3 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +11 -15
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +15 -4
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions.rb +15 -15
- data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +140 -14
- data/bundler/lib/bundler/vendor/thor/lib/thor/command.rb +13 -4
- data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +4 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/error.rb +16 -25
- data/bundler/lib/bundler/vendor/thor/lib/thor/group.rb +12 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/invocation.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/nested_context.rb +2 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +17 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +33 -17
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/option.rb +28 -9
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +46 -7
- data/bundler/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +2 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/runner.rb +40 -30
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +35 -159
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/color.rb +1 -46
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/column_printer.rb +29 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/html.rb +1 -46
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/table_printer.rb +118 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/terminal.rb +42 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/wrapped_printer.rb +38 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/util.rb +8 -7
- data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor.rb +166 -8
- data/bundler/lib/bundler/vendor/tsort/.document +1 -0
- data/bundler/lib/bundler/vendor/tsort/lib/tsort.rb +3 -0
- data/bundler/lib/bundler/vendor/uri/.document +1 -0
- data/bundler/lib/bundler/vendor/uri/COPYING +56 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +343 -148
- data/bundler/lib/bundler/vendor/uri/lib/uri/file.rb +10 -4
- data/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb +3 -2
- data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +44 -33
- data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +40 -2
- data/bundler/lib/bundler/vendor/uri/lib/uri/https.rb +2 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/ldap.rb +1 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/ldaps.rb +2 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/mailto.rb +2 -2
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +25 -12
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +130 -38
- data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/ws.rb +1 -2
- data/bundler/lib/bundler/vendor/uri/lib/uri/wss.rb +2 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri.rb +12 -11
- data/bundler/lib/bundler/vendored_net_http.rb +23 -0
- data/bundler/lib/bundler/vendored_persistent.rb +0 -36
- data/bundler/lib/bundler/{vendored_tmpdir.rb → vendored_pub_grub.rb} +1 -1
- data/bundler/lib/bundler/vendored_securerandom.rb +12 -0
- data/bundler/lib/bundler/vendored_timeout.rb +12 -0
- data/bundler/lib/bundler/vendored_uri.rb +18 -1
- data/bundler/lib/bundler/version.rb +5 -1
- data/bundler/lib/bundler/vlad.rb +1 -1
- data/bundler/lib/bundler/worker.rb +5 -7
- data/bundler/lib/bundler/yaml_serializer.rb +22 -13
- data/bundler/lib/bundler.rb +155 -148
- data/{bundler → doc/bundler}/UPGRADING.md +11 -4
- data/{CONTRIBUTING.md → doc/rubygems/CONTRIBUTING.md} +40 -17
- data/doc/rubygems/POLICIES.md +204 -0
- data/{test/rubygems/fake_certlib/openssl.rb → exe/gem} +5 -1
- data/{bin → exe}/update_rubygems +12 -10
- data/lib/rubygems/available_set.rb +8 -7
- data/lib/rubygems/basic_specification.rb +90 -52
- data/lib/rubygems/bundler_version_finder.rb +6 -6
- data/lib/rubygems/ci_detector.rb +75 -0
- data/lib/rubygems/command.rb +68 -64
- data/lib/rubygems/command_manager.rb +39 -24
- data/lib/rubygems/commands/build_command.rb +14 -19
- data/lib/rubygems/commands/cert_command.rb +39 -39
- data/lib/rubygems/commands/check_command.rb +30 -25
- data/lib/rubygems/commands/cleanup_command.rb +32 -43
- data/lib/rubygems/commands/contents_command.rb +33 -25
- data/lib/rubygems/commands/dependency_command.rb +22 -23
- data/lib/rubygems/commands/environment_command.rb +8 -9
- data/lib/rubygems/commands/exec_command.rb +247 -0
- data/lib/rubygems/commands/fetch_command.rb +25 -10
- data/lib/rubygems/commands/generate_index_command.rb +40 -74
- data/lib/rubygems/commands/help_command.rb +15 -14
- data/lib/rubygems/commands/info_command.rb +5 -5
- data/lib/rubygems/commands/install_command.rb +31 -38
- data/lib/rubygems/commands/list_command.rb +6 -5
- data/lib/rubygems/commands/lock_command.rb +6 -5
- data/lib/rubygems/commands/mirror_command.rb +4 -3
- data/lib/rubygems/commands/open_command.rb +11 -12
- data/lib/rubygems/commands/outdated_command.rb +6 -5
- data/lib/rubygems/commands/owner_command.rb +23 -22
- data/lib/rubygems/commands/pristine_command.rb +83 -62
- data/lib/rubygems/commands/push_command.rb +38 -13
- data/lib/rubygems/commands/query_command.rb +11 -11
- data/lib/rubygems/commands/rdoc_command.rb +23 -28
- data/lib/rubygems/commands/rebuild_command.rb +262 -0
- data/lib/rubygems/commands/search_command.rb +6 -5
- data/lib/rubygems/commands/server_command.rb +4 -3
- data/lib/rubygems/commands/setup_command.rb +137 -154
- data/lib/rubygems/commands/signin_command.rb +10 -9
- data/lib/rubygems/commands/signout_command.rb +8 -7
- data/lib/rubygems/commands/sources_command.rb +34 -33
- data/lib/rubygems/commands/specification_command.rb +25 -20
- data/lib/rubygems/commands/stale_command.rb +5 -4
- data/lib/rubygems/commands/uninstall_command.rb +66 -59
- data/lib/rubygems/commands/unpack_command.rb +23 -30
- data/lib/rubygems/commands/update_command.rb +62 -94
- data/lib/rubygems/commands/which_command.rb +9 -8
- data/lib/rubygems/commands/yank_command.rb +14 -13
- data/lib/rubygems/compatibility.rb +5 -6
- data/lib/rubygems/config_file.rb +160 -50
- data/lib/rubygems/core_ext/kernel_gem.rb +3 -10
- data/lib/rubygems/core_ext/kernel_require.rb +88 -114
- data/lib/rubygems/core_ext/kernel_warn.rb +30 -39
- data/lib/rubygems/core_ext/tcpsocket_init.rb +4 -2
- data/lib/rubygems/defaults.rb +53 -22
- data/lib/rubygems/dependency.rb +34 -36
- data/lib/rubygems/dependency_installer.rb +52 -56
- data/lib/rubygems/dependency_list.rb +8 -7
- data/lib/rubygems/deprecate.rb +80 -75
- data/lib/rubygems/doctor.rb +23 -22
- data/lib/rubygems/errors.rb +6 -8
- data/lib/rubygems/exceptions.rb +20 -18
- data/lib/rubygems/ext/build_error.rb +2 -1
- data/lib/rubygems/ext/builder.rb +56 -32
- data/lib/rubygems/ext/cargo_builder/link_flag_converter.rb +9 -5
- data/lib/rubygems/ext/cargo_builder.rb +158 -131
- data/lib/rubygems/ext/cmake_builder.rb +9 -4
- data/lib/rubygems/ext/configure_builder.rb +9 -3
- data/lib/rubygems/ext/ext_conf_builder.rb +19 -15
- data/lib/rubygems/ext/rake_builder.rb +14 -7
- data/lib/rubygems/ext.rb +8 -7
- data/lib/rubygems/gem_runner.rb +23 -9
- data/lib/rubygems/gemcutter_utilities/webauthn_listener/response.rb +163 -0
- data/lib/rubygems/gemcutter_utilities/webauthn_listener.rb +105 -0
- data/lib/rubygems/gemcutter_utilities/webauthn_poller.rb +80 -0
- data/lib/rubygems/gemcutter_utilities.rb +141 -63
- data/lib/rubygems/gemspec_helpers.rb +19 -0
- data/lib/rubygems/install_default_message.rb +3 -2
- data/lib/rubygems/install_message.rb +3 -2
- data/lib/rubygems/install_update_options.rb +72 -67
- data/lib/rubygems/installer.rb +148 -130
- data/lib/rubygems/installer_uninstaller_utils.rb +2 -4
- data/lib/rubygems/local_remote_options.rb +24 -28
- data/lib/rubygems/name_tuple.rb +10 -11
- data/lib/rubygems/package/digest_io.rb +2 -1
- data/lib/rubygems/package/file_source.rb +3 -2
- data/lib/rubygems/package/io_source.rb +1 -0
- data/lib/rubygems/package/old.rb +11 -10
- data/lib/rubygems/package/source.rb +1 -0
- data/lib/rubygems/package/tar_header.rb +125 -91
- data/lib/rubygems/package/tar_reader/entry.rb +106 -29
- data/lib/rubygems/package/tar_reader.rb +16 -39
- data/lib/rubygems/package/tar_writer.rb +29 -26
- data/lib/rubygems/package.rb +122 -84
- data/lib/rubygems/package_task.rb +7 -6
- data/lib/rubygems/path_support.rb +11 -11
- data/lib/rubygems/platform.rb +119 -70
- data/lib/rubygems/psych_tree.rb +6 -1
- data/lib/rubygems/query_utils.rb +46 -48
- data/lib/rubygems/rdoc.rb +13 -3
- data/lib/rubygems/remote_fetcher.rb +47 -39
- data/lib/rubygems/request/connection_pools.rb +6 -6
- data/lib/rubygems/request/http_pool.rb +2 -1
- data/lib/rubygems/request/https_pool.rb +1 -0
- data/lib/rubygems/request.rb +48 -44
- data/lib/rubygems/request_set/gem_dependency_api.rb +141 -144
- data/lib/rubygems/request_set/lockfile/parser.rb +31 -30
- data/lib/rubygems/request_set/lockfile/tokenizer.rb +24 -14
- data/lib/rubygems/request_set/lockfile.rb +11 -15
- data/lib/rubygems/request_set.rb +25 -23
- data/lib/rubygems/requirement.rb +30 -27
- data/lib/rubygems/resolver/activation_request.rb +7 -10
- data/lib/rubygems/resolver/api_set/gem_parser.rb +7 -3
- data/lib/rubygems/resolver/api_set.rb +20 -13
- data/lib/rubygems/resolver/api_specification.rb +8 -7
- data/lib/rubygems/resolver/best_set.rb +5 -32
- data/lib/rubygems/resolver/composed_set.rb +4 -3
- data/lib/rubygems/resolver/conflict.rb +14 -21
- data/lib/rubygems/resolver/current_set.rb +1 -0
- data/lib/rubygems/resolver/dependency_request.rb +3 -2
- data/lib/rubygems/resolver/git_set.rb +2 -2
- data/lib/rubygems/resolver/git_specification.rb +7 -6
- data/lib/rubygems/resolver/index_set.rb +10 -9
- data/lib/rubygems/resolver/index_specification.rb +8 -6
- data/lib/rubygems/resolver/installed_specification.rb +6 -5
- data/lib/rubygems/resolver/installer_set.rb +19 -22
- data/lib/rubygems/resolver/local_specification.rb +4 -3
- data/lib/rubygems/resolver/lock_set.rb +6 -5
- data/lib/rubygems/resolver/lock_specification.rb +5 -4
- data/lib/rubygems/resolver/requirement_list.rb +1 -0
- data/lib/rubygems/resolver/set.rb +1 -0
- data/lib/rubygems/resolver/source_set.rb +2 -0
- data/lib/rubygems/resolver/spec_specification.rb +8 -0
- data/lib/rubygems/resolver/specification.rb +2 -1
- data/lib/rubygems/resolver/stats.rb +2 -1
- data/lib/rubygems/resolver/vendor_set.rb +2 -1
- data/lib/rubygems/resolver/vendor_specification.rb +4 -3
- data/lib/rubygems/resolver.rb +51 -57
- data/lib/rubygems/s3_uri_signer.rb +18 -16
- data/lib/rubygems/safe_marshal/elements.rb +146 -0
- data/lib/rubygems/safe_marshal/reader.rb +325 -0
- data/lib/rubygems/safe_marshal/visitors/stream_printer.rb +31 -0
- data/lib/rubygems/safe_marshal/visitors/to_ruby.rb +428 -0
- data/lib/rubygems/safe_marshal/visitors/visitor.rb +74 -0
- data/lib/rubygems/safe_marshal.rb +74 -0
- data/lib/rubygems/safe_yaml.rb +14 -26
- data/lib/rubygems/security/policies.rb +48 -49
- data/lib/rubygems/security/policy.rb +25 -28
- data/lib/rubygems/security/signer.rb +16 -7
- data/lib/rubygems/security/trust_dir.rb +12 -13
- data/lib/rubygems/security.rb +40 -66
- data/lib/rubygems/security_option.rb +7 -6
- data/lib/rubygems/shellwords.rb +3 -0
- data/lib/rubygems/source/git.rb +34 -31
- data/lib/rubygems/source/installed.rb +4 -3
- data/lib/rubygems/source/local.rb +49 -49
- data/lib/rubygems/source/lock.rb +2 -3
- data/lib/rubygems/source/specific_file.rb +6 -4
- data/lib/rubygems/source/vendor.rb +1 -2
- data/lib/rubygems/source.rb +37 -31
- data/lib/rubygems/source_list.rb +8 -8
- data/lib/rubygems/spec_fetcher.rb +95 -66
- data/lib/rubygems/specification.rb +342 -404
- data/lib/rubygems/specification_policy.rb +147 -75
- data/lib/rubygems/specification_record.rb +212 -0
- data/lib/rubygems/stub_specification.rb +56 -30
- data/lib/rubygems/target_rbconfig.rb +50 -0
- data/lib/rubygems/text.rb +3 -4
- data/lib/rubygems/uninstaller.rb +67 -48
- data/lib/rubygems/update_suggestion.rb +56 -0
- data/lib/rubygems/uri.rb +10 -10
- data/lib/rubygems/uri_formatter.rb +2 -2
- data/lib/rubygems/user_interaction.rb +50 -40
- data/lib/rubygems/util/licenses.rb +310 -39
- data/lib/rubygems/util/list.rb +4 -1
- data/lib/rubygems/util.rb +19 -20
- data/lib/rubygems/validator.rb +15 -14
- data/lib/rubygems/vendor/molinillo/.document +1 -0
- data/lib/rubygems/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +57 -0
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +11 -11
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/dependency_graph.rb +3 -3
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/errors.rb +1 -1
- data/lib/rubygems/vendor/molinillo/lib/molinillo/gem_metadata.rb +6 -0
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +2 -2
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/modules/ui.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/resolution.rb +4 -4
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/resolver.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo/state.rb +1 -1
- data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/lib/molinillo.rb +2 -2
- data/lib/rubygems/vendor/net-http/.document +1 -0
- data/lib/rubygems/vendor/net-http/COPYING +56 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/exceptions.rb +34 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/generic_request.rb +414 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/header.rb +981 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/proxy_delta.rb +17 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/request.rb +88 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/requests.rb +430 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/response.rb +738 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/responses.rb +1174 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/status.rb +84 -0
- data/lib/rubygems/vendor/net-http/lib/net/http.rb +2580 -0
- data/lib/rubygems/vendor/net-http/lib/net/https.rb +23 -0
- data/lib/rubygems/vendor/net-protocol/.document +1 -0
- data/lib/rubygems/vendor/net-protocol/lib/net/protocol.rb +544 -0
- data/lib/rubygems/vendor/optparse/.document +1 -0
- data/lib/rubygems/vendor/optparse/COPYING +56 -0
- data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/ac.rb +16 -0
- data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/kwargs.rb +8 -3
- data/lib/rubygems/vendor/optparse/lib/optparse/uri.rb +7 -0
- data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/version.rb +9 -0
- data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse.rb +206 -83
- data/lib/rubygems/vendor/resolv/.document +1 -0
- data/lib/rubygems/vendor/resolv/COPYING +56 -0
- data/lib/rubygems/vendor/resolv/lib/resolv.rb +3455 -0
- data/lib/rubygems/vendor/securerandom/.document +1 -0
- data/lib/rubygems/vendor/securerandom/COPYING +56 -0
- data/lib/rubygems/vendor/securerandom/lib/securerandom.rb +102 -0
- data/lib/rubygems/vendor/timeout/.document +1 -0
- data/lib/rubygems/vendor/timeout/COPYING +56 -0
- data/lib/rubygems/vendor/timeout/lib/timeout.rb +198 -0
- data/lib/rubygems/vendor/tsort/.document +1 -0
- data/lib/rubygems/vendor/tsort/lib/tsort.rb +455 -0
- data/lib/rubygems/vendor/uri/.document +1 -0
- data/lib/rubygems/vendor/uri/COPYING +56 -0
- data/lib/rubygems/vendor/uri/lib/uri/common.rb +876 -0
- data/lib/rubygems/vendor/uri/lib/uri/file.rb +100 -0
- data/lib/rubygems/vendor/uri/lib/uri/ftp.rb +267 -0
- data/lib/rubygems/vendor/uri/lib/uri/generic.rb +1578 -0
- data/lib/rubygems/vendor/uri/lib/uri/http.rb +125 -0
- data/lib/rubygems/vendor/uri/lib/uri/https.rb +23 -0
- data/lib/rubygems/vendor/uri/lib/uri/ldap.rb +261 -0
- data/lib/rubygems/vendor/uri/lib/uri/ldaps.rb +22 -0
- data/lib/rubygems/vendor/uri/lib/uri/mailto.rb +293 -0
- data/lib/rubygems/vendor/uri/lib/uri/rfc2396_parser.rb +546 -0
- data/lib/rubygems/vendor/uri/lib/uri/rfc3986_parser.rb +206 -0
- data/lib/rubygems/vendor/uri/lib/uri/version.rb +6 -0
- data/lib/rubygems/vendor/uri/lib/uri/ws.rb +83 -0
- data/lib/rubygems/vendor/uri/lib/uri/wss.rb +23 -0
- data/lib/rubygems/vendor/uri/lib/uri.rb +104 -0
- data/{bundler/lib/bundler → lib/rubygems}/vendored_molinillo.rb +0 -1
- data/lib/rubygems/vendored_net_http.rb +5 -0
- data/lib/rubygems/vendored_optparse.rb +3 -0
- data/lib/rubygems/vendored_securerandom.rb +3 -0
- data/lib/rubygems/vendored_timeout.rb +5 -0
- data/lib/rubygems/vendored_tsort.rb +3 -0
- data/lib/rubygems/version.rb +57 -45
- data/lib/rubygems/version_option.rb +6 -8
- data/lib/rubygems/yaml_serializer.rb +98 -0
- data/lib/rubygems.rb +191 -133
- data/rubygems-update.gemspec +16 -9
- data/setup.rb +12 -9
- metadata +233 -307
- data/POLICIES.md +0 -100
- data/bin/gem +0 -13
- data/bundler/lib/bundler/dep_proxy.rb +0 -55
- data/bundler/lib/bundler/templates/gems.rb +0 -5
- data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +0 -5
- data/bundler/lib/bundler/templates/newgem/travis.yml.tt +0 -6
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +0 -57
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +0 -6
- data/bundler/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +0 -154
- data/bundler/lib/bundler/version_ranges.rb +0 -122
- data/lib/rubygems/indexer.rb +0 -427
- data/lib/rubygems/mock_gem_ui.rb +0 -85
- data/lib/rubygems/optparse/lib/optparse/uri.rb +0 -7
- data/lib/rubygems/optparse.rb +0 -3
- data/lib/rubygems/resolver/molinillo/LICENSE +0 -9
- data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +0 -57
- data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb +0 -88
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb +0 -36
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +0 -66
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +0 -62
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +0 -63
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +0 -61
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb +0 -126
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb +0 -46
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb +0 -36
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +0 -164
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +0 -255
- data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +0 -143
- data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +0 -6
- data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb +0 -112
- data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb +0 -67
- data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +0 -839
- data/lib/rubygems/resolver/molinillo/lib/molinillo/resolver.rb +0 -46
- data/lib/rubygems/resolver/molinillo/lib/molinillo/state.rb +0 -58
- data/lib/rubygems/resolver/molinillo/lib/molinillo.rb +0 -11
- data/lib/rubygems/resolver/molinillo.rb +0 -2
- data/lib/rubygems/tsort/LICENSE.txt +0 -22
- data/lib/rubygems/tsort/lib/tsort.rb +0 -454
- data/lib/rubygems/tsort.rb +0 -3
- data/test/rubygems/alternate_cert.pem +0 -19
- data/test/rubygems/alternate_cert_32.pem +0 -19
- data/test/rubygems/alternate_key.pem +0 -27
- data/test/rubygems/bad_rake.rb +0 -2
- data/test/rubygems/ca_cert.pem +0 -77
- data/test/rubygems/child_cert.pem +0 -20
- data/test/rubygems/child_cert_32.pem +0 -20
- data/test/rubygems/child_key.pem +0 -27
- data/test/rubygems/client.pem +0 -107
- data/test/rubygems/data/excon-0.7.7.gemspec.rz +0 -0
- data/test/rubygems/data/gem-private_key.pem +0 -27
- data/test/rubygems/data/gem-public_cert.pem +0 -20
- data/test/rubygems/data/null-required-ruby-version.gemspec.rz +0 -0
- data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
- data/test/rubygems/data/pry-0.4.7.gemspec.rz +0 -0
- data/test/rubygems/encrypted_private_key.pem +0 -30
- data/test/rubygems/expired_cert.pem +0 -19
- data/test/rubygems/foo/discover.rb +0 -1
- data/test/rubygems/future_cert.pem +0 -19
- data/test/rubygems/future_cert_32.pem +0 -19
- data/test/rubygems/good_rake.rb +0 -2
- data/test/rubygems/grandchild_cert.pem +0 -20
- data/test/rubygems/grandchild_cert_32.pem +0 -20
- data/test/rubygems/grandchild_key.pem +0 -27
- data/test/rubygems/helper.rb +0 -1622
- data/test/rubygems/installer_test_case.rb +0 -247
- data/test/rubygems/invalid_client.pem +0 -49
- data/test/rubygems/invalid_issuer_cert.pem +0 -20
- data/test/rubygems/invalid_issuer_cert_32.pem +0 -20
- data/test/rubygems/invalid_key.pem +0 -27
- data/test/rubygems/invalid_signer_cert.pem +0 -19
- data/test/rubygems/invalid_signer_cert_32.pem +0 -19
- data/test/rubygems/invalidchild_cert.pem +0 -20
- data/test/rubygems/invalidchild_cert_32.pem +0 -20
- data/test/rubygems/invalidchild_key.pem +0 -27
- data/test/rubygems/package/tar_test_case.rb +0 -139
- data/test/rubygems/packages/ascii_binder-0.1.10.1.gem +0 -0
- data/test/rubygems/packages/ill-formatted-platform-1.0.0.10.gem +0 -0
- data/test/rubygems/plugin/exception/rubygems_plugin.rb +0 -3
- data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -4
- data/test/rubygems/plugin/standarderror/rubygems_plugin.rb +0 -3
- data/test/rubygems/private3072_key.pem +0 -40
- data/test/rubygems/private_ec_key.pem +0 -9
- data/test/rubygems/private_key.pem +0 -27
- data/test/rubygems/public3072_cert.pem +0 -25
- data/test/rubygems/public_cert.pem +0 -20
- data/test/rubygems/public_cert_32.pem +0 -19
- data/test/rubygems/public_key.pem +0 -9
- data/test/rubygems/rubygems/commands/crash_command.rb +0 -4
- data/test/rubygems/rubygems_plugin.rb +0 -23
- data/test/rubygems/sff/discover.rb +0 -1
- data/test/rubygems/simple_gem.rb +0 -67
- data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -7
- data/test/rubygems/specifications/foo-0.0.1-x86-mswin32.gemspec +0 -0
- data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +0 -12
- data/test/rubygems/ssl_cert.pem +0 -80
- data/test/rubygems/ssl_key.pem +0 -27
- data/test/rubygems/test_bundled_ca.rb +0 -60
- data/test/rubygems/test_config.rb +0 -27
- data/test/rubygems/test_deprecate.rb +0 -157
- data/test/rubygems/test_exit.rb +0 -11
- data/test/rubygems/test_gem.rb +0 -2112
- data/test/rubygems/test_gem_available_set.rb +0 -129
- data/test/rubygems/test_gem_bundler_version_finder.rb +0 -125
- data/test/rubygems/test_gem_command.rb +0 -400
- data/test/rubygems/test_gem_command_manager.rb +0 -334
- data/test/rubygems/test_gem_commands_build_command.rb +0 -727
- data/test/rubygems/test_gem_commands_cert_command.rb +0 -867
- data/test/rubygems/test_gem_commands_check_command.rb +0 -67
- data/test/rubygems/test_gem_commands_cleanup_command.rb +0 -291
- data/test/rubygems/test_gem_commands_contents_command.rb +0 -270
- data/test/rubygems/test_gem_commands_dependency_command.rb +0 -227
- data/test/rubygems/test_gem_commands_environment_command.rb +0 -167
- data/test/rubygems/test_gem_commands_fetch_command.rb +0 -257
- data/test/rubygems/test_gem_commands_generate_index_command.rb +0 -80
- data/test/rubygems/test_gem_commands_help_command.rb +0 -93
- data/test/rubygems/test_gem_commands_info_command.rb +0 -43
- data/test/rubygems/test_gem_commands_install_command.rb +0 -1553
- data/test/rubygems/test_gem_commands_list_command.rb +0 -32
- data/test/rubygems/test_gem_commands_lock_command.rb +0 -66
- data/test/rubygems/test_gem_commands_mirror.rb +0 -19
- data/test/rubygems/test_gem_commands_open_command.rb +0 -97
- data/test/rubygems/test_gem_commands_outdated_command.rb +0 -49
- data/test/rubygems/test_gem_commands_owner_command.rb +0 -326
- data/test/rubygems/test_gem_commands_pristine_command.rb +0 -659
- data/test/rubygems/test_gem_commands_push_command.rb +0 -477
- data/test/rubygems/test_gem_commands_query_command.rb +0 -857
- data/test/rubygems/test_gem_commands_search_command.rb +0 -15
- data/test/rubygems/test_gem_commands_server_command.rb +0 -19
- data/test/rubygems/test_gem_commands_setup_command.rb +0 -447
- data/test/rubygems/test_gem_commands_signin_command.rb +0 -219
- data/test/rubygems/test_gem_commands_signout_command.rb +0 -30
- data/test/rubygems/test_gem_commands_sources_command.rb +0 -534
- data/test/rubygems/test_gem_commands_specification_command.rb +0 -276
- data/test/rubygems/test_gem_commands_stale_command.rb +0 -42
- data/test/rubygems/test_gem_commands_uninstall_command.rb +0 -504
- data/test/rubygems/test_gem_commands_unpack_command.rb +0 -223
- data/test/rubygems/test_gem_commands_update_command.rb +0 -835
- data/test/rubygems/test_gem_commands_which_command.rb +0 -84
- data/test/rubygems/test_gem_commands_yank_command.rb +0 -180
- data/test/rubygems/test_gem_config_file.rb +0 -504
- data/test/rubygems/test_gem_dependency.rb +0 -395
- data/test/rubygems/test_gem_dependency_installer.rb +0 -1155
- data/test/rubygems/test_gem_dependency_list.rb +0 -264
- data/test/rubygems/test_gem_dependency_resolution_error.rb +0 -26
- data/test/rubygems/test_gem_doctor.rb +0 -194
- data/test/rubygems/test_gem_ext_builder.rb +0 -338
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/.gitignore +0 -1
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/Cargo.lock +0 -243
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/Cargo.toml +0 -10
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/build.rb +0 -21
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/custom_name.gemspec +0 -10
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/src/lib.rs +0 -27
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/.gitignore +0 -1
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.lock +0 -243
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.toml +0 -10
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/build.rb +0 -21
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/rust_ruby_example.gemspec +0 -8
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/src/lib.rs +0 -39
- data/test/rubygems/test_gem_ext_cargo_builder.rb +0 -178
- data/test/rubygems/test_gem_ext_cargo_builder_link_flag_converter.rb +0 -33
- data/test/rubygems/test_gem_ext_cargo_builder_unit.rb +0 -75
- data/test/rubygems/test_gem_ext_cmake_builder.rb +0 -83
- data/test/rubygems/test_gem_ext_configure_builder.rb +0 -79
- data/test/rubygems/test_gem_ext_ext_conf_builder.rb +0 -230
- data/test/rubygems/test_gem_ext_rake_builder.rb +0 -112
- data/test/rubygems/test_gem_gem_runner.rb +0 -113
- data/test/rubygems/test_gem_gemcutter_utilities.rb +0 -272
- data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -59
- data/test/rubygems/test_gem_indexer.rb +0 -361
- data/test/rubygems/test_gem_install_update_options.rb +0 -207
- data/test/rubygems/test_gem_installer.rb +0 -2394
- data/test/rubygems/test_gem_local_remote_options.rb +0 -132
- data/test/rubygems/test_gem_name_tuple.rb +0 -42
- data/test/rubygems/test_gem_package.rb +0 -1178
- data/test/rubygems/test_gem_package_old.rb +0 -90
- data/test/rubygems/test_gem_package_tar_header.rb +0 -225
- data/test/rubygems/test_gem_package_tar_reader.rb +0 -87
- data/test/rubygems/test_gem_package_tar_reader_entry.rb +0 -152
- data/test/rubygems/test_gem_package_tar_writer.rb +0 -330
- data/test/rubygems/test_gem_package_task.rb +0 -117
- data/test/rubygems/test_gem_path_support.rb +0 -138
- data/test/rubygems/test_gem_platform.rb +0 -391
- data/test/rubygems/test_gem_rdoc.rb +0 -136
- data/test/rubygems/test_gem_remote_fetcher.rb +0 -1226
- data/test/rubygems/test_gem_request.rb +0 -541
- data/test/rubygems/test_gem_request_connection_pools.rb +0 -150
- data/test/rubygems/test_gem_request_set.rb +0 -671
- data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +0 -847
- data/test/rubygems/test_gem_request_set_lockfile.rb +0 -468
- data/test/rubygems/test_gem_request_set_lockfile_parser.rb +0 -543
- data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +0 -306
- data/test/rubygems/test_gem_requirement.rb +0 -498
- data/test/rubygems/test_gem_resolver.rb +0 -791
- data/test/rubygems/test_gem_resolver_activation_request.rb +0 -42
- data/test/rubygems/test_gem_resolver_api_set.rb +0 -209
- data/test/rubygems/test_gem_resolver_api_specification.rb +0 -166
- data/test/rubygems/test_gem_resolver_best_set.rb +0 -158
- data/test/rubygems/test_gem_resolver_composed_set.rb +0 -43
- data/test/rubygems/test_gem_resolver_conflict.rb +0 -81
- data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -82
- data/test/rubygems/test_gem_resolver_git_set.rb +0 -187
- data/test/rubygems/test_gem_resolver_git_specification.rb +0 -113
- data/test/rubygems/test_gem_resolver_index_set.rb +0 -87
- data/test/rubygems/test_gem_resolver_index_specification.rb +0 -92
- data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -46
- data/test/rubygems/test_gem_resolver_installer_set.rb +0 -275
- data/test/rubygems/test_gem_resolver_local_specification.rb +0 -43
- data/test/rubygems/test_gem_resolver_lock_set.rb +0 -61
- data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -97
- data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -18
- data/test/rubygems/test_gem_resolver_specification.rb +0 -62
- data/test/rubygems/test_gem_resolver_vendor_set.rb +0 -81
- data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -81
- data/test/rubygems/test_gem_security.rb +0 -340
- data/test/rubygems/test_gem_security_policy.rb +0 -535
- data/test/rubygems/test_gem_security_signer.rb +0 -217
- data/test/rubygems/test_gem_security_trust_dir.rb +0 -98
- data/test/rubygems/test_gem_silent_ui.rb +0 -116
- data/test/rubygems/test_gem_source.rb +0 -253
- data/test/rubygems/test_gem_source_fetch_problem.rb +0 -36
- data/test/rubygems/test_gem_source_git.rb +0 -303
- data/test/rubygems/test_gem_source_installed.rb +0 -34
- data/test/rubygems/test_gem_source_list.rb +0 -118
- data/test/rubygems/test_gem_source_local.rb +0 -106
- data/test/rubygems/test_gem_source_lock.rb +0 -112
- data/test/rubygems/test_gem_source_specific_file.rb +0 -75
- data/test/rubygems/test_gem_source_subpath_problem.rb +0 -49
- data/test/rubygems/test_gem_source_vendor.rb +0 -29
- data/test/rubygems/test_gem_spec_fetcher.rb +0 -337
- data/test/rubygems/test_gem_specification.rb +0 -3756
- data/test/rubygems/test_gem_stream_ui.rb +0 -224
- data/test/rubygems/test_gem_stub_specification.rb +0 -277
- data/test/rubygems/test_gem_text.rb +0 -102
- data/test/rubygems/test_gem_uninstaller.rb +0 -674
- data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -30
- data/test/rubygems/test_gem_uri.rb +0 -39
- data/test/rubygems/test_gem_uri_formatter.rb +0 -26
- data/test/rubygems/test_gem_util.rb +0 -90
- data/test/rubygems/test_gem_validator.rb +0 -42
- data/test/rubygems/test_gem_version.rb +0 -295
- data/test/rubygems/test_gem_version_option.rb +0 -164
- data/test/rubygems/test_kernel.rb +0 -129
- data/test/rubygems/test_project_sanity.rb +0 -20
- data/test/rubygems/test_remote_fetch_error.rb +0 -19
- data/test/rubygems/test_require.rb +0 -719
- data/test/rubygems/test_rubygems.rb +0 -74
- data/test/rubygems/utilities.rb +0 -371
- data/test/rubygems/wrong_key_cert.pem +0 -19
- data/test/rubygems/wrong_key_cert_32.pem +0 -19
- data/test/test_changelog_generator.rb +0 -17
- /data/{lib/rubygems/optparse → bundler/lib/bundler/vendor/connection_pool}/.document +0 -0
- /data/{lib/rubygems/tsort → bundler/lib/bundler/vendor/fileutils}/.document +0 -0
- /data/{lib/rubygems/optparse → bundler/lib/bundler/vendor/fileutils}/COPYING +0 -0
- /data/{MAINTAINERS.txt → doc/MAINTAINERS.txt} +0 -0
- /data/{UPGRADING.md → doc/rubygems/UPGRADING.md} +0 -0
- /data/{bundler/lib/bundler → lib/rubygems}/vendor/molinillo/LICENSE +0 -0
- /data/{bundler/lib/bundler/vendor/fileutils → lib/rubygems/vendor/net-protocol}/LICENSE.txt +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optionparser.rb +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/date.rb +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/shellwords.rb +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/time.rb +0 -0
- /data/{bundler/lib/bundler/vendor/uri → lib/rubygems/vendor/tsort}/LICENSE.txt +0 -0
@@ -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 Gem::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 Gem::URI;
|
432
|
+
# however, future requests should still use the original Gem::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 Gem::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>Gem::URI Too Long</tt> responses (status code 414).
|
694
|
+
#
|
695
|
+
# The Gem::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
|