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