rubygems-update 2.6.0 → 3.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +5941 -0
- data/CODE_OF_CONDUCT.md +76 -35
- data/CONTRIBUTING.md +231 -0
- data/MAINTAINERS.txt +8 -0
- data/Manifest.txt +439 -216
- data/POLICIES.md +135 -0
- data/README.md +112 -0
- data/UPGRADING.md +15 -0
- data/bundler/CHANGELOG.md +4753 -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 +254 -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 +1015 -0
- data/bundler/lib/bundler/dependency.rb +105 -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 +604 -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 +172 -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 +121 -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 +296 -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/.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/.document +1 -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/.document +1 -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/.document +1 -0
- data/bundler/lib/bundler/vendor/pub_grub/LICENSE.txt +21 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/assignment.rb +20 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/basic_package_source.rb +189 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/failure_writer.rb +182 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/incompatibility.rb +150 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/package.rb +43 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/partial_solution.rb +121 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/rubygems.rb +45 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/solve_failure.rb +19 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb +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/.document +1 -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 +112 -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 +81 -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/.document +1 -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/.document +1 -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 +663 -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 +82 -59
- 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 +153 -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/.document +1 -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/.document +1 -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 +254 -144
- 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 +107 -57
- 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/.document +1 -0
- 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 +93 -47
- 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/.document +1 -0
- 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 +146 -0
- data/lib/rubygems/safe_marshal/reader.rb +308 -0
- data/lib/rubygems/safe_marshal/visitors/stream_printer.rb +31 -0
- data/lib/rubygems/safe_marshal/visitors/to_ruby.rb +415 -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/.document +1 -0
- 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 +453 -358
- data/rubygems-update.gemspec +38 -0
- data/setup.rb +13 -27
- metadata +511 -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 -3094
- 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 -1679
- 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 -987
- 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,846 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "vendored_thor"
|
4
|
+
|
5
|
+
module Bundler
|
6
|
+
class CLI < Thor
|
7
|
+
require_relative "cli/common"
|
8
|
+
|
9
|
+
package_name "Bundler"
|
10
|
+
|
11
|
+
AUTO_INSTALL_CMDS = %w[show binstubs outdated exec open console licenses clean].freeze
|
12
|
+
PARSEABLE_COMMANDS = %w[check config help exec platform show version].freeze
|
13
|
+
EXTENSIONS = ["c", "rust"].freeze
|
14
|
+
|
15
|
+
COMMAND_ALIASES = {
|
16
|
+
"check" => "c",
|
17
|
+
"install" => "i",
|
18
|
+
"plugin" => "",
|
19
|
+
"list" => "ls",
|
20
|
+
"exec" => ["e", "ex", "exe"],
|
21
|
+
"cache" => ["package", "pack"],
|
22
|
+
"version" => ["-v", "--version"],
|
23
|
+
}.freeze
|
24
|
+
|
25
|
+
def self.start(*)
|
26
|
+
check_deprecated_ext_option(ARGV) if ARGV.include?("--ext")
|
27
|
+
|
28
|
+
super
|
29
|
+
ensure
|
30
|
+
Bundler::SharedHelpers.print_major_deprecations!
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.dispatch(*)
|
34
|
+
super do |i|
|
35
|
+
i.send(:print_command)
|
36
|
+
i.send(:warn_on_outdated_bundler)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def self.all_aliases
|
41
|
+
@all_aliases ||= begin
|
42
|
+
command_aliases = {}
|
43
|
+
|
44
|
+
COMMAND_ALIASES.each do |name, aliases|
|
45
|
+
Array(aliases).each do |one_alias|
|
46
|
+
command_aliases[one_alias] = name
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
command_aliases
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def self.aliases_for(command_name)
|
55
|
+
COMMAND_ALIASES.select {|k, _| k == command_name }.invert
|
56
|
+
end
|
57
|
+
|
58
|
+
def initialize(*args)
|
59
|
+
super
|
60
|
+
|
61
|
+
custom_gemfile = options[:gemfile] || Bundler.settings[:gemfile]
|
62
|
+
if custom_gemfile && !custom_gemfile.empty?
|
63
|
+
Bundler::SharedHelpers.set_env "BUNDLE_GEMFILE", File.expand_path(custom_gemfile)
|
64
|
+
Bundler.reset_settings_and_root!
|
65
|
+
end
|
66
|
+
|
67
|
+
Bundler.self_manager.restart_with_locked_bundler_if_needed
|
68
|
+
|
69
|
+
Bundler.settings.set_command_option_if_given :retry, options[:retry]
|
70
|
+
|
71
|
+
current_cmd = args.last[:current_command].name
|
72
|
+
auto_install if AUTO_INSTALL_CMDS.include?(current_cmd)
|
73
|
+
rescue UnknownArgumentError => e
|
74
|
+
raise InvalidOption, e.message
|
75
|
+
ensure
|
76
|
+
self.options ||= {}
|
77
|
+
unprinted_warnings = Bundler.ui.unprinted_warnings
|
78
|
+
Bundler.ui = UI::Shell.new(options)
|
79
|
+
Bundler.ui.level = "debug" if options["verbose"]
|
80
|
+
unprinted_warnings.each {|w| Bundler.ui.warn(w) }
|
81
|
+
end
|
82
|
+
|
83
|
+
check_unknown_options!(except: [:config, :exec])
|
84
|
+
stop_on_unknown_option! :exec
|
85
|
+
|
86
|
+
desc "cli_help", "Prints a summary of bundler commands", hide: true
|
87
|
+
def cli_help
|
88
|
+
version
|
89
|
+
Bundler.ui.info "\n"
|
90
|
+
|
91
|
+
primary_commands = ["install", "update", "cache", "exec", "config", "help"]
|
92
|
+
|
93
|
+
list = self.class.printable_commands(true)
|
94
|
+
by_name = list.group_by {|name, _message| name.match(/^bundle (\w+)/)[1] }
|
95
|
+
utilities = by_name.keys.sort - primary_commands
|
96
|
+
primary_commands.map! {|name| (by_name[name] || raise("no primary command #{name}")).first }
|
97
|
+
utilities.map! {|name| by_name[name].first }
|
98
|
+
|
99
|
+
shell.say "Bundler commands:\n\n"
|
100
|
+
|
101
|
+
shell.say " Primary commands:\n"
|
102
|
+
shell.print_table(primary_commands, indent: 4, truncate: true)
|
103
|
+
shell.say
|
104
|
+
shell.say " Utilities:\n"
|
105
|
+
shell.print_table(utilities, indent: 4, truncate: true)
|
106
|
+
shell.say
|
107
|
+
self.class.send(:class_options_help, shell)
|
108
|
+
end
|
109
|
+
default_task(Bundler.feature_flag.default_cli_command)
|
110
|
+
|
111
|
+
class_option "no-color", type: :boolean, desc: "Disable colorization in output"
|
112
|
+
class_option "retry", type: :numeric, aliases: "-r", banner: "NUM",
|
113
|
+
desc: "Specify the number of times you wish to attempt network commands"
|
114
|
+
class_option "verbose", type: :boolean, desc: "Enable verbose output mode", aliases: "-V"
|
115
|
+
|
116
|
+
def help(cli = nil)
|
117
|
+
case cli
|
118
|
+
when "gemfile" then command = "gemfile"
|
119
|
+
when nil then command = "bundle"
|
120
|
+
else command = "bundle-#{cli}"
|
121
|
+
end
|
122
|
+
|
123
|
+
man_path = File.expand_path("man", __dir__)
|
124
|
+
man_pages = Hash[Dir.glob(File.join(man_path, "**", "*")).grep(/.*\.\d*\Z/).collect do |f|
|
125
|
+
[File.basename(f, ".*"), f]
|
126
|
+
end]
|
127
|
+
|
128
|
+
if man_pages.include?(command)
|
129
|
+
man_page = man_pages[command]
|
130
|
+
if Bundler.which("man") && !man_path.match?(%r{^file:/.+!/META-INF/jruby.home/.+})
|
131
|
+
Kernel.exec("man", man_page)
|
132
|
+
else
|
133
|
+
puts File.read("#{man_path}/#{File.basename(man_page)}.ronn")
|
134
|
+
end
|
135
|
+
elsif command_path = Bundler.which("bundler-#{cli}")
|
136
|
+
Kernel.exec(command_path, "--help")
|
137
|
+
else
|
138
|
+
super
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
def self.handle_no_command_error(command, has_namespace = $thor_runner)
|
143
|
+
if Bundler.feature_flag.plugins? && Bundler::Plugin.command?(command)
|
144
|
+
return Bundler::Plugin.exec_command(command, ARGV[1..-1])
|
145
|
+
end
|
146
|
+
|
147
|
+
return super unless command_path = Bundler.which("bundler-#{command}")
|
148
|
+
|
149
|
+
Kernel.exec(command_path, *ARGV[1..-1])
|
150
|
+
end
|
151
|
+
|
152
|
+
desc "init [OPTIONS]", "Generates a Gemfile into the current working directory"
|
153
|
+
long_desc <<-D
|
154
|
+
Init generates a default Gemfile in the current working directory. When adding a
|
155
|
+
Gemfile to a gem with a gemspec, the --gemspec option will automatically add each
|
156
|
+
dependency listed in the gemspec file to the newly created Gemfile.
|
157
|
+
D
|
158
|
+
method_option "gemspec", type: :string, banner: "Use the specified .gemspec to create the Gemfile"
|
159
|
+
method_option "gemfile", type: :string, banner: "Use the specified name for the gemfile instead of 'Gemfile'"
|
160
|
+
def init
|
161
|
+
require_relative "cli/init"
|
162
|
+
Init.new(options.dup).run
|
163
|
+
end
|
164
|
+
|
165
|
+
desc "check [OPTIONS]", "Checks if the dependencies listed in Gemfile are satisfied by currently installed gems"
|
166
|
+
long_desc <<-D
|
167
|
+
Check searches the local machine for each of the gems requested in the Gemfile. If
|
168
|
+
all gems are found, Bundler prints a success message and exits with a status of 0.
|
169
|
+
If not, the first missing gem is listed and Bundler exits status 1.
|
170
|
+
D
|
171
|
+
method_option "dry-run", type: :boolean, default: false, banner: "Lock the Gemfile"
|
172
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
173
|
+
method_option "path", type: :string, banner: "Specify a different path than the system default ($BUNDLE_PATH or $GEM_HOME).#{" Bundler will remember this value for future installs on this machine" unless Bundler.feature_flag.forget_cli_options?}"
|
174
|
+
def check
|
175
|
+
remembered_flag_deprecation("path")
|
176
|
+
|
177
|
+
require_relative "cli/check"
|
178
|
+
Check.new(options).run
|
179
|
+
end
|
180
|
+
|
181
|
+
map aliases_for("check")
|
182
|
+
|
183
|
+
desc "remove [GEM [GEM ...]]", "Removes gems from the Gemfile"
|
184
|
+
long_desc <<-D
|
185
|
+
Removes the given gems from the Gemfile while ensuring that the resulting Gemfile is still valid. If the gem is not found, Bundler prints a error message and if gem could not be removed due to any reason Bundler will display a warning.
|
186
|
+
D
|
187
|
+
method_option "install", type: :boolean, banner: "Runs 'bundle install' after removing the gems from the Gemfile"
|
188
|
+
def remove(*gems)
|
189
|
+
if ARGV.include?("--install")
|
190
|
+
message = "The `--install` flag has been deprecated. `bundle install` is triggered by default."
|
191
|
+
removed_message = "The `--install` flag has been removed. `bundle install` is triggered by default."
|
192
|
+
SharedHelpers.major_deprecation(2, message, removed_message: removed_message)
|
193
|
+
end
|
194
|
+
|
195
|
+
require_relative "cli/remove"
|
196
|
+
Remove.new(gems, options).run
|
197
|
+
end
|
198
|
+
|
199
|
+
desc "install [OPTIONS]", "Install the current environment to the system"
|
200
|
+
long_desc <<-D
|
201
|
+
Install will install all of the gems in the current bundle, making them available
|
202
|
+
for use. In a freshly checked out repository, this command will give you the same
|
203
|
+
gem versions as the last person who updated the Gemfile and ran `bundle update`.
|
204
|
+
|
205
|
+
Passing [DIR] to install (e.g. vendor) will cause the unpacked gems to be installed
|
206
|
+
into the [DIR] directory rather than into system gems.
|
207
|
+
|
208
|
+
If the bundle has already been installed, bundler will tell you so and then exit.
|
209
|
+
D
|
210
|
+
method_option "binstubs", type: :string, lazy_default: "bin", banner: "Generate bin stubs for bundled gems to ./bin"
|
211
|
+
method_option "clean", type: :boolean, banner: "Run bundle clean automatically after install"
|
212
|
+
method_option "deployment", type: :boolean, banner: "Install using defaults tuned for deployment environments"
|
213
|
+
method_option "frozen", type: :boolean, banner: "Do not allow the Gemfile.lock to be updated after this install"
|
214
|
+
method_option "full-index", type: :boolean, banner: "Fall back to using the single-file index of all gems"
|
215
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
216
|
+
method_option "jobs", aliases: "-j", type: :numeric, banner: "Specify the number of jobs to run in parallel"
|
217
|
+
method_option "local", type: :boolean, banner: "Do not attempt to fetch gems remotely and use the gem cache instead"
|
218
|
+
method_option "prefer-local", type: :boolean, banner: "Only attempt to fetch gems remotely if not present locally, even if newer versions are available remotely"
|
219
|
+
method_option "no-cache", type: :boolean, banner: "Don't update the existing gem cache."
|
220
|
+
method_option "redownload", type: :boolean, aliases: "--force", banner: "Force downloading every gem."
|
221
|
+
method_option "no-prune", type: :boolean, banner: "Don't remove stale gems from the cache."
|
222
|
+
method_option "path", type: :string, banner: "Specify a different path than the system default ($BUNDLE_PATH or $GEM_HOME).#{" Bundler will remember this value for future installs on this machine" unless Bundler.feature_flag.forget_cli_options?}"
|
223
|
+
method_option "quiet", type: :boolean, banner: "Only output warnings and errors."
|
224
|
+
method_option "shebang", type: :string, banner: "Specify a different shebang executable name than the default (usually 'ruby')"
|
225
|
+
method_option "standalone", type: :array, lazy_default: [], banner: "Make a bundle that can work without the Bundler runtime"
|
226
|
+
method_option "system", type: :boolean, banner: "Install to the system location ($BUNDLE_PATH or $GEM_HOME) even if the bundle was previously installed somewhere else for this application"
|
227
|
+
method_option "trust-policy", alias: "P", type: :string, banner: "Gem trust policy (like gem install -P). Must be one of " +
|
228
|
+
Bundler.rubygems.security_policy_keys.join("|")
|
229
|
+
method_option "without", type: :array, banner: "Exclude gems that are part of the specified named group."
|
230
|
+
method_option "with", type: :array, banner: "Include gems that are part of the specified named group."
|
231
|
+
def install
|
232
|
+
SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force")
|
233
|
+
|
234
|
+
%w[clean deployment frozen no-prune path shebang without with].each do |option|
|
235
|
+
remembered_flag_deprecation(option)
|
236
|
+
end
|
237
|
+
|
238
|
+
print_remembered_flag_deprecation("--system", "path.system", "true") if ARGV.include?("--system")
|
239
|
+
|
240
|
+
remembered_negative_flag_deprecation("no-deployment")
|
241
|
+
|
242
|
+
require_relative "cli/install"
|
243
|
+
Bundler.settings.temporary(no_install: false) do
|
244
|
+
Install.new(options.dup).run
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
248
|
+
map aliases_for("install")
|
249
|
+
|
250
|
+
desc "update [OPTIONS]", "Update the current environment"
|
251
|
+
long_desc <<-D
|
252
|
+
Update will install the newest versions of the gems listed in the Gemfile. Use
|
253
|
+
update when you have changed the Gemfile, or if you want to get the newest
|
254
|
+
possible versions of the gems in the bundle.
|
255
|
+
D
|
256
|
+
method_option "full-index", type: :boolean, banner: "Fall back to using the single-file index of all gems"
|
257
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
258
|
+
method_option "group", aliases: "-g", type: :array, banner: "Update a specific group"
|
259
|
+
method_option "jobs", aliases: "-j", type: :numeric, banner: "Specify the number of jobs to run in parallel"
|
260
|
+
method_option "local", type: :boolean, banner: "Do not attempt to fetch gems remotely and use the gem cache instead"
|
261
|
+
method_option "quiet", type: :boolean, banner: "Only output warnings and errors."
|
262
|
+
method_option "source", type: :array, banner: "Update a specific source (and all gems associated with it)"
|
263
|
+
method_option "redownload", type: :boolean, aliases: "--force", banner: "Force downloading every gem."
|
264
|
+
method_option "ruby", type: :boolean, banner: "Update ruby specified in Gemfile.lock"
|
265
|
+
method_option "bundler", type: :string, lazy_default: "> 0.a", banner: "Update the locked version of bundler"
|
266
|
+
method_option "patch", type: :boolean, banner: "Prefer updating only to next patch version"
|
267
|
+
method_option "minor", type: :boolean, banner: "Prefer updating only to next minor version"
|
268
|
+
method_option "major", type: :boolean, banner: "Prefer updating to next major version (default)"
|
269
|
+
method_option "pre", type: :boolean, banner: "Always choose the highest allowed version when updating gems, regardless of prerelease status"
|
270
|
+
method_option "strict", type: :boolean, banner: "Do not allow any gem to be updated past latest --patch | --minor | --major"
|
271
|
+
method_option "conservative", type: :boolean, banner: "Use bundle install conservative update behavior and do not allow shared dependencies to be updated."
|
272
|
+
method_option "all", type: :boolean, banner: "Update everything."
|
273
|
+
def update(*gems)
|
274
|
+
SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force")
|
275
|
+
require_relative "cli/update"
|
276
|
+
Bundler.settings.temporary(no_install: false) do
|
277
|
+
Update.new(options, gems).run
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
281
|
+
desc "show GEM [OPTIONS]", "Shows all gems that are part of the bundle, or the path to a given gem"
|
282
|
+
long_desc <<-D
|
283
|
+
Show lists the names and versions of all gems that are required by your Gemfile.
|
284
|
+
Calling show with [GEM] will list the exact location of that gem on your machine.
|
285
|
+
D
|
286
|
+
method_option "paths", type: :boolean,
|
287
|
+
banner: "List the paths of all gems that are required by your Gemfile."
|
288
|
+
method_option "outdated", type: :boolean,
|
289
|
+
banner: "Show verbose output including whether gems are outdated."
|
290
|
+
def show(gem_name = nil)
|
291
|
+
if ARGV.include?("--outdated")
|
292
|
+
message = "the `--outdated` flag to `bundle show` was undocumented and will be removed without replacement"
|
293
|
+
removed_message = "the `--outdated` flag to `bundle show` was undocumented and has been removed without replacement"
|
294
|
+
SharedHelpers.major_deprecation(2, message, removed_message: removed_message)
|
295
|
+
end
|
296
|
+
require_relative "cli/show"
|
297
|
+
Show.new(options, gem_name).run
|
298
|
+
end
|
299
|
+
|
300
|
+
desc "list", "List all gems in the bundle"
|
301
|
+
method_option "name-only", type: :boolean, banner: "print only the gem names"
|
302
|
+
method_option "only-group", type: :array, default: [], banner: "print gems from a given set of groups"
|
303
|
+
method_option "without-group", type: :array, default: [], banner: "print all gems except from a given set of groups"
|
304
|
+
method_option "paths", type: :boolean, banner: "print the path to each gem in the bundle"
|
305
|
+
def list
|
306
|
+
require_relative "cli/list"
|
307
|
+
List.new(options).run
|
308
|
+
end
|
309
|
+
|
310
|
+
map aliases_for("list")
|
311
|
+
|
312
|
+
desc "info GEM [OPTIONS]", "Show information for the given gem"
|
313
|
+
method_option "path", type: :boolean, banner: "Print full path to gem"
|
314
|
+
method_option "version", type: :boolean, banner: "Print gem version"
|
315
|
+
def info(gem_name)
|
316
|
+
require_relative "cli/info"
|
317
|
+
Info.new(options, gem_name).run
|
318
|
+
end
|
319
|
+
|
320
|
+
desc "binstubs GEM [OPTIONS]", "Install the binstubs of the listed gem"
|
321
|
+
long_desc <<-D
|
322
|
+
Generate binstubs for executables in [GEM]. Binstubs are put into bin,
|
323
|
+
or the --binstubs directory if one has been set. Calling binstubs with [GEM [GEM]]
|
324
|
+
will create binstubs for all given gems.
|
325
|
+
D
|
326
|
+
method_option "force", type: :boolean, default: false, banner: "Overwrite existing binstubs if they exist"
|
327
|
+
method_option "path", type: :string, lazy_default: "bin", banner: "Binstub destination directory (default bin)"
|
328
|
+
method_option "shebang", type: :string, banner: "Specify a different shebang executable name than the default (usually 'ruby')"
|
329
|
+
method_option "standalone", type: :boolean, banner: "Make binstubs that can work without the Bundler runtime"
|
330
|
+
method_option "all", type: :boolean, banner: "Install binstubs for all gems"
|
331
|
+
method_option "all-platforms", type: :boolean, default: false, banner: "Install binstubs for all platforms"
|
332
|
+
def binstubs(*gems)
|
333
|
+
require_relative "cli/binstubs"
|
334
|
+
Binstubs.new(options, gems).run
|
335
|
+
end
|
336
|
+
|
337
|
+
desc "add GEM VERSION", "Add gem to Gemfile and run bundle install"
|
338
|
+
long_desc <<-D
|
339
|
+
Adds the specified gem to Gemfile (if valid) and run 'bundle install' in one step.
|
340
|
+
D
|
341
|
+
method_option "version", aliases: "-v", type: :string
|
342
|
+
method_option "group", aliases: "-g", type: :string
|
343
|
+
method_option "source", aliases: "-s", type: :string
|
344
|
+
method_option "require", aliases: "-r", type: :string, banner: "Adds require path to gem. Provide false, or a path as a string."
|
345
|
+
method_option "path", type: :string
|
346
|
+
method_option "git", type: :string
|
347
|
+
method_option "github", type: :string
|
348
|
+
method_option "branch", type: :string
|
349
|
+
method_option "ref", type: :string
|
350
|
+
method_option "skip-install", type: :boolean, banner: "Adds gem to the Gemfile but does not install it"
|
351
|
+
method_option "optimistic", type: :boolean, banner: "Adds optimistic declaration of version to gem"
|
352
|
+
method_option "strict", type: :boolean, banner: "Adds strict declaration of version to gem"
|
353
|
+
def add(*gems)
|
354
|
+
require_relative "cli/add"
|
355
|
+
Add.new(options.dup, gems).run
|
356
|
+
end
|
357
|
+
|
358
|
+
desc "outdated GEM [OPTIONS]", "List installed gems with newer versions available"
|
359
|
+
long_desc <<-D
|
360
|
+
Outdated lists the names and versions of gems that have a newer version available
|
361
|
+
in the given source. Calling outdated with [GEM [GEM]] will only check for newer
|
362
|
+
versions of the given gems. Prerelease gems are ignored by default. If your gems
|
363
|
+
are up to date, Bundler will exit with a status of 0. Otherwise, it will exit 1.
|
364
|
+
|
365
|
+
For more information on patch level options (--major, --minor, --patch,
|
366
|
+
--strict) see documentation on the same options on the update command.
|
367
|
+
D
|
368
|
+
method_option "group", type: :string, banner: "List gems from a specific group"
|
369
|
+
method_option "groups", type: :boolean, banner: "List gems organized by groups"
|
370
|
+
method_option "local", type: :boolean, banner: "Do not attempt to fetch gems remotely and use the gem cache instead"
|
371
|
+
method_option "pre", type: :boolean, banner: "Check for newer pre-release gems"
|
372
|
+
method_option "source", type: :array, banner: "Check against a specific source"
|
373
|
+
method_option "filter-strict", type: :boolean, aliases: "--strict", banner: "Only list newer versions allowed by your Gemfile requirements"
|
374
|
+
method_option "update-strict", type: :boolean, banner: "Strict conservative resolution, do not allow any gem to be updated past latest --patch | --minor | --major"
|
375
|
+
method_option "minor", type: :boolean, banner: "Prefer updating only to next minor version"
|
376
|
+
method_option "major", type: :boolean, banner: "Prefer updating to next major version (default)"
|
377
|
+
method_option "patch", type: :boolean, banner: "Prefer updating only to next patch version"
|
378
|
+
method_option "filter-major", type: :boolean, banner: "Only list major newer versions"
|
379
|
+
method_option "filter-minor", type: :boolean, banner: "Only list minor newer versions"
|
380
|
+
method_option "filter-patch", type: :boolean, banner: "Only list patch newer versions"
|
381
|
+
method_option "parseable", aliases: "--porcelain", type: :boolean, banner: "Use minimal formatting for more parseable output"
|
382
|
+
method_option "only-explicit", type: :boolean, banner: "Only list gems specified in your Gemfile, not their dependencies"
|
383
|
+
def outdated(*gems)
|
384
|
+
require_relative "cli/outdated"
|
385
|
+
Outdated.new(options, gems).run
|
386
|
+
end
|
387
|
+
|
388
|
+
desc "fund [OPTIONS]", "Lists information about gems seeking funding assistance"
|
389
|
+
method_option "group", aliases: "-g", type: :array, banner: "Fetch funding information for a specific group"
|
390
|
+
def fund
|
391
|
+
require_relative "cli/fund"
|
392
|
+
Fund.new(options).run
|
393
|
+
end
|
394
|
+
|
395
|
+
desc "cache [OPTIONS]", "Locks and then caches all of the gems into vendor/cache"
|
396
|
+
method_option "all", type: :boolean,
|
397
|
+
default: Bundler.feature_flag.cache_all?,
|
398
|
+
banner: "Include all sources (including path and git)."
|
399
|
+
method_option "all-platforms", type: :boolean, banner: "Include gems for all platforms present in the lockfile, not only the current one"
|
400
|
+
method_option "cache-path", type: :string, banner: "Specify a different cache path than the default (vendor/cache)."
|
401
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
402
|
+
method_option "no-install", type: :boolean, banner: "Don't install the gems, only update the cache."
|
403
|
+
method_option "no-prune", type: :boolean, banner: "Don't remove stale gems from the cache."
|
404
|
+
method_option "path", type: :string, banner: "Specify a different path than the system default ($BUNDLE_PATH or $GEM_HOME).#{" Bundler will remember this value for future installs on this machine" unless Bundler.feature_flag.forget_cli_options?}"
|
405
|
+
method_option "quiet", type: :boolean, banner: "Only output warnings and errors."
|
406
|
+
method_option "frozen", type: :boolean, banner: "Do not allow the Gemfile.lock to be updated after this bundle cache operation's install"
|
407
|
+
long_desc <<-D
|
408
|
+
The cache command will copy the .gem files for every gem in the bundle into the
|
409
|
+
directory ./vendor/cache. If you then check that directory into your source
|
410
|
+
control repository, others who check out your source will be able to install the
|
411
|
+
bundle without having to download any additional gems.
|
412
|
+
D
|
413
|
+
def cache
|
414
|
+
print_remembered_flag_deprecation("--all", "cache_all", "true") if ARGV.include?("--all")
|
415
|
+
|
416
|
+
if ARGV.include?("--path")
|
417
|
+
message =
|
418
|
+
"The `--path` flag is deprecated because its semantics are unclear. " \
|
419
|
+
"Use `bundle config cache_path` to configure the path of your cache of gems, " \
|
420
|
+
"and `bundle config path` to configure the path where your gems are installed, " \
|
421
|
+
"and stop using this flag"
|
422
|
+
removed_message =
|
423
|
+
"The `--path` flag has been removed because its semantics were unclear. " \
|
424
|
+
"Use `bundle config cache_path` to configure the path of your cache of gems, " \
|
425
|
+
"and `bundle config path` to configure the path where your gems are installed."
|
426
|
+
SharedHelpers.major_deprecation 2, message, removed_message: removed_message
|
427
|
+
end
|
428
|
+
|
429
|
+
require_relative "cli/cache"
|
430
|
+
Cache.new(options).run
|
431
|
+
end
|
432
|
+
|
433
|
+
map aliases_for("cache")
|
434
|
+
|
435
|
+
desc "exec [OPTIONS]", "Run the command in context of the bundle"
|
436
|
+
method_option :keep_file_descriptors, type: :boolean, default: true
|
437
|
+
method_option :gemfile, type: :string, required: false
|
438
|
+
long_desc <<-D
|
439
|
+
Exec runs a command, providing it access to the gems in the bundle. While using
|
440
|
+
bundle exec you can require and call the bundled gems as if they were installed
|
441
|
+
into the system wide RubyGems repository.
|
442
|
+
D
|
443
|
+
def exec(*args)
|
444
|
+
if ARGV.include?("--no-keep-file-descriptors")
|
445
|
+
message = "The `--no-keep-file-descriptors` has been deprecated. `bundle exec` no longer mess with your file descriptors. Close them in the exec'd script if you need to"
|
446
|
+
removed_message = "The `--no-keep-file-descriptors` has been removed. `bundle exec` no longer mess with your file descriptors. Close them in the exec'd script if you need to"
|
447
|
+
SharedHelpers.major_deprecation(2, message, removed_message: removed_message)
|
448
|
+
end
|
449
|
+
|
450
|
+
require_relative "cli/exec"
|
451
|
+
Exec.new(options, args).run
|
452
|
+
end
|
453
|
+
|
454
|
+
map aliases_for("exec")
|
455
|
+
|
456
|
+
desc "config NAME [VALUE]", "Retrieve or set a configuration value"
|
457
|
+
long_desc <<-D
|
458
|
+
Retrieves or sets a configuration value. If only one parameter is provided, retrieve the value. If two parameters are provided, replace the
|
459
|
+
existing value with the newly provided one.
|
460
|
+
|
461
|
+
By default, setting a configuration value sets it for all projects
|
462
|
+
on the machine.
|
463
|
+
|
464
|
+
If a global setting is superseded by local configuration, this command
|
465
|
+
will show the current value, as well as any superseded values and
|
466
|
+
where they were specified.
|
467
|
+
D
|
468
|
+
require_relative "cli/config"
|
469
|
+
subcommand "config", Config
|
470
|
+
|
471
|
+
desc "open GEM", "Opens the source directory of the given bundled gem"
|
472
|
+
method_option "path", type: :string, lazy_default: "", banner: "Open relative path of the gem source."
|
473
|
+
def open(name)
|
474
|
+
require_relative "cli/open"
|
475
|
+
Open.new(options, name).run
|
476
|
+
end
|
477
|
+
|
478
|
+
unless Bundler.feature_flag.bundler_3_mode?
|
479
|
+
desc "console [GROUP]", "Opens an IRB session with the bundle pre-loaded"
|
480
|
+
def console(group = nil)
|
481
|
+
require_relative "cli/console"
|
482
|
+
Console.new(options, group).run
|
483
|
+
end
|
484
|
+
end
|
485
|
+
|
486
|
+
desc "version", "Prints Bundler version information"
|
487
|
+
def version
|
488
|
+
cli_help = current_command.name == "cli_help"
|
489
|
+
if cli_help || ARGV.include?("version")
|
490
|
+
build_info = " (#{BuildMetadata.built_at} commit #{BuildMetadata.git_commit_sha})"
|
491
|
+
end
|
492
|
+
|
493
|
+
if !cli_help && Bundler.feature_flag.print_only_version_number?
|
494
|
+
Bundler.ui.info "#{Bundler::VERSION}#{build_info}"
|
495
|
+
else
|
496
|
+
Bundler.ui.info "Bundler version #{Bundler::VERSION}#{build_info}"
|
497
|
+
end
|
498
|
+
end
|
499
|
+
|
500
|
+
map aliases_for("version")
|
501
|
+
|
502
|
+
desc "licenses", "Prints the license of all gems in the bundle"
|
503
|
+
def licenses
|
504
|
+
Bundler.load.specs.sort_by {|s| s.license.to_s }.reverse_each do |s|
|
505
|
+
gem_name = s.name
|
506
|
+
license = s.license || s.licenses
|
507
|
+
|
508
|
+
if license.empty?
|
509
|
+
Bundler.ui.warn "#{gem_name}: Unknown"
|
510
|
+
else
|
511
|
+
Bundler.ui.info "#{gem_name}: #{license}"
|
512
|
+
end
|
513
|
+
end
|
514
|
+
end
|
515
|
+
|
516
|
+
unless Bundler.feature_flag.bundler_3_mode?
|
517
|
+
desc "viz [OPTIONS]", "Generates a visual dependency graph", hide: true
|
518
|
+
long_desc <<-D
|
519
|
+
Viz generates a PNG file of the current Gemfile as a dependency graph.
|
520
|
+
Viz requires the ruby-graphviz gem (and its dependencies).
|
521
|
+
The associated gems must also be installed via 'bundle install'.
|
522
|
+
D
|
523
|
+
method_option :file, type: :string, default: "gem_graph", aliases: "-f", desc: "The name to use for the generated file. see format option"
|
524
|
+
method_option :format, type: :string, default: "png", aliases: "-F", desc: "This is output format option. Supported format is png, jpg, svg, dot ..."
|
525
|
+
method_option :requirements, type: :boolean, default: false, aliases: "-R", desc: "Set to show the version of each required dependency."
|
526
|
+
method_option :version, type: :boolean, default: false, aliases: "-v", desc: "Set to show each gem version."
|
527
|
+
method_option :without, type: :array, default: [], aliases: "-W", banner: "GROUP[ GROUP...]", desc: "Exclude gems that are part of the specified named group."
|
528
|
+
def viz
|
529
|
+
SharedHelpers.major_deprecation 2, "The `viz` command has been renamed to `graph` and moved to a plugin. See https://github.com/rubygems/bundler-graph"
|
530
|
+
require_relative "cli/viz"
|
531
|
+
Viz.new(options.dup).run
|
532
|
+
end
|
533
|
+
end
|
534
|
+
|
535
|
+
old_gem = instance_method(:gem)
|
536
|
+
|
537
|
+
desc "gem NAME [OPTIONS]", "Creates a skeleton for creating a rubygem"
|
538
|
+
method_option :exe, type: :boolean, default: false, aliases: ["--bin", "-b"], desc: "Generate a binary executable for your library."
|
539
|
+
method_option :coc, type: :boolean, desc: "Generate a code of conduct file. Set a default with `bundle config set --global gem.coc true`."
|
540
|
+
method_option :edit, type: :string, aliases: "-e", required: false, banner: "EDITOR",
|
541
|
+
lazy_default: [ENV["BUNDLER_EDITOR"], ENV["VISUAL"], ENV["EDITOR"]].find {|e| !e.nil? && !e.empty? },
|
542
|
+
desc: "Open generated gemspec in the specified editor (defaults to $EDITOR or $BUNDLER_EDITOR)"
|
543
|
+
method_option :ext, type: :string, desc: "Generate the boilerplate for C extension code.", enum: EXTENSIONS
|
544
|
+
method_option :git, type: :boolean, default: true, desc: "Initialize a git repo inside your library."
|
545
|
+
method_option :mit, type: :boolean, desc: "Generate an MIT license file. Set a default with `bundle config set --global gem.mit true`."
|
546
|
+
method_option :rubocop, type: :boolean, desc: "Add rubocop to the generated Rakefile and gemspec. Set a default with `bundle config set --global gem.rubocop true`."
|
547
|
+
method_option :changelog, type: :boolean, desc: "Generate changelog file. Set a default with `bundle config set --global gem.changelog true`."
|
548
|
+
method_option :test, type: :string, lazy_default: Bundler.settings["gem.test"] || "", aliases: "-t", banner: "Use the specified test framework for your library",
|
549
|
+
desc: "Generate a test directory for your library, either rspec, minitest or test-unit. Set a default with `bundle config set --global gem.test (rspec|minitest|test-unit)`."
|
550
|
+
method_option :ci, type: :string, lazy_default: Bundler.settings["gem.ci"] || "",
|
551
|
+
desc: "Generate CI configuration, either GitHub Actions, GitLab CI or CircleCI. Set a default with `bundle config set --global gem.ci (github|gitlab|circle)`"
|
552
|
+
method_option :linter, type: :string, lazy_default: Bundler.settings["gem.linter"] || "",
|
553
|
+
desc: "Add a linter and code formatter, either RuboCop or Standard. Set a default with `bundle config set --global gem.linter (rubocop|standard)`"
|
554
|
+
method_option :github_username, type: :string, default: Bundler.settings["gem.github_username"], banner: "Set your username on GitHub", desc: "Fill in GitHub username on README so that you don't have to do it manually. Set a default with `bundle config set --global gem.github_username <your_username>`."
|
555
|
+
|
556
|
+
def gem(name)
|
557
|
+
end
|
558
|
+
|
559
|
+
commands["gem"].tap do |gem_command|
|
560
|
+
def gem_command.run(instance, args = [])
|
561
|
+
arity = 1 # name
|
562
|
+
|
563
|
+
require_relative "cli/gem"
|
564
|
+
cmd_args = args + [instance]
|
565
|
+
cmd_args.unshift(instance.options)
|
566
|
+
|
567
|
+
cmd = begin
|
568
|
+
Gem.new(*cmd_args)
|
569
|
+
rescue ArgumentError => e
|
570
|
+
instance.class.handle_argument_error(self, e, args, arity)
|
571
|
+
end
|
572
|
+
|
573
|
+
cmd.run
|
574
|
+
end
|
575
|
+
end
|
576
|
+
|
577
|
+
undef_method(:gem)
|
578
|
+
define_method(:gem, old_gem)
|
579
|
+
private :gem
|
580
|
+
|
581
|
+
def self.source_root
|
582
|
+
File.expand_path("templates", __dir__)
|
583
|
+
end
|
584
|
+
|
585
|
+
desc "clean [OPTIONS]", "Cleans up unused gems in your bundler directory", hide: true
|
586
|
+
method_option "dry-run", type: :boolean, default: false, banner: "Only print out changes, do not clean gems"
|
587
|
+
method_option "force", type: :boolean, default: false, banner: "Forces cleaning up unused gems even if Bundler is configured to use globally installed gems. As a consequence, removes all system gems except for the ones in the current application."
|
588
|
+
def clean
|
589
|
+
require_relative "cli/clean"
|
590
|
+
Clean.new(options.dup).run
|
591
|
+
end
|
592
|
+
|
593
|
+
desc "platform [OPTIONS]", "Displays platform compatibility information"
|
594
|
+
method_option "ruby", type: :boolean, default: false, banner: "only display ruby related platform information"
|
595
|
+
def platform
|
596
|
+
require_relative "cli/platform"
|
597
|
+
Platform.new(options).run
|
598
|
+
end
|
599
|
+
|
600
|
+
desc "inject GEM VERSION", "Add the named gem, with version requirements, to the resolved Gemfile", hide: true
|
601
|
+
method_option "source", type: :string, banner: "Install gem from the given source"
|
602
|
+
method_option "group", type: :string, banner: "Install gem into a bundler group"
|
603
|
+
def inject(name, version)
|
604
|
+
SharedHelpers.major_deprecation 2, "The `inject` command has been replaced by the `add` command"
|
605
|
+
require_relative "cli/inject"
|
606
|
+
Inject.new(options.dup, name, version).run
|
607
|
+
end
|
608
|
+
|
609
|
+
desc "lock", "Creates a lockfile without installing"
|
610
|
+
method_option "update", type: :array, lazy_default: true, banner: "ignore the existing lockfile, update all gems by default, or update list of given gems"
|
611
|
+
method_option "local", type: :boolean, default: false, banner: "do not attempt to fetch remote gemspecs and use the local gem cache only"
|
612
|
+
method_option "print", type: :boolean, default: false, banner: "print the lockfile to STDOUT instead of writing to the file system"
|
613
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
614
|
+
method_option "lockfile", type: :string, default: nil, banner: "the path the lockfile should be written to"
|
615
|
+
method_option "full-index", type: :boolean, default: false, banner: "Fall back to using the single-file index of all gems"
|
616
|
+
method_option "add-platform", type: :array, default: [], banner: "Add a new platform to the lockfile"
|
617
|
+
method_option "remove-platform", type: :array, default: [], banner: "Remove a platform from the lockfile"
|
618
|
+
method_option "patch", type: :boolean, banner: "If updating, prefer updating only to next patch version"
|
619
|
+
method_option "minor", type: :boolean, banner: "If updating, prefer updating only to next minor version"
|
620
|
+
method_option "major", type: :boolean, banner: "If updating, prefer updating to next major version (default)"
|
621
|
+
method_option "pre", type: :boolean, banner: "If updating, always choose the highest allowed version, regardless of prerelease status"
|
622
|
+
method_option "strict", type: :boolean, banner: "If updating, do not allow any gem to be updated past latest --patch | --minor | --major"
|
623
|
+
method_option "conservative", type: :boolean, banner: "If updating, use bundle install conservative update behavior and do not allow shared dependencies to be updated"
|
624
|
+
method_option "bundler", type: :string, lazy_default: "> 0.a", banner: "Update the locked version of bundler"
|
625
|
+
def lock
|
626
|
+
require_relative "cli/lock"
|
627
|
+
Lock.new(options).run
|
628
|
+
end
|
629
|
+
|
630
|
+
desc "env", "Print information about the environment Bundler is running under"
|
631
|
+
def env
|
632
|
+
Env.write($stdout)
|
633
|
+
end
|
634
|
+
|
635
|
+
desc "doctor [OPTIONS]", "Checks the bundle for common problems"
|
636
|
+
long_desc <<-D
|
637
|
+
Doctor scans the OS dependencies of each of the gems requested in the Gemfile. If
|
638
|
+
missing dependencies are detected, Bundler prints them and exits status 1.
|
639
|
+
Otherwise, Bundler prints a success message and exits with a status of 0.
|
640
|
+
D
|
641
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
642
|
+
method_option "quiet", type: :boolean, banner: "Only output warnings and errors."
|
643
|
+
def doctor
|
644
|
+
require_relative "cli/doctor"
|
645
|
+
Doctor.new(options).run
|
646
|
+
end
|
647
|
+
|
648
|
+
desc "issue", "Learn how to report an issue in Bundler"
|
649
|
+
def issue
|
650
|
+
require_relative "cli/issue"
|
651
|
+
Issue.new.run
|
652
|
+
end
|
653
|
+
|
654
|
+
desc "pristine [GEMS...]", "Restores installed gems to pristine condition"
|
655
|
+
long_desc <<-D
|
656
|
+
Restores installed gems to pristine condition from files located in the
|
657
|
+
gem cache. Gems installed from a git repository will be issued `git
|
658
|
+
checkout --force`.
|
659
|
+
D
|
660
|
+
def pristine(*gems)
|
661
|
+
require_relative "cli/pristine"
|
662
|
+
Bundler.settings.temporary(no_install: false) do
|
663
|
+
Pristine.new(gems).run
|
664
|
+
end
|
665
|
+
end
|
666
|
+
|
667
|
+
if Bundler.feature_flag.plugins?
|
668
|
+
require_relative "cli/plugin"
|
669
|
+
desc "plugin", "Manage the bundler plugins"
|
670
|
+
subcommand "plugin", Plugin
|
671
|
+
end
|
672
|
+
|
673
|
+
# Reformat the arguments passed to bundle that include a --help flag
|
674
|
+
# into the corresponding `bundle help #{command}` call
|
675
|
+
def self.reformatted_help_args(args)
|
676
|
+
bundler_commands = (COMMAND_ALIASES.keys + COMMAND_ALIASES.values).flatten
|
677
|
+
|
678
|
+
help_flags = %w[--help -h]
|
679
|
+
exec_commands = ["exec"] + COMMAND_ALIASES["exec"]
|
680
|
+
|
681
|
+
help_used = args.index {|a| help_flags.include? a }
|
682
|
+
exec_used = args.index {|a| exec_commands.include? a }
|
683
|
+
|
684
|
+
command = args.find {|a| bundler_commands.include? a }
|
685
|
+
command = all_aliases[command] if all_aliases[command]
|
686
|
+
|
687
|
+
if exec_used && help_used
|
688
|
+
if exec_used + help_used == 1
|
689
|
+
%w[help exec]
|
690
|
+
else
|
691
|
+
args
|
692
|
+
end
|
693
|
+
elsif help_used
|
694
|
+
args = args.dup
|
695
|
+
args.delete_at(help_used)
|
696
|
+
["help", command || args].flatten.compact
|
697
|
+
else
|
698
|
+
args
|
699
|
+
end
|
700
|
+
end
|
701
|
+
|
702
|
+
def self.check_deprecated_ext_option(arguments)
|
703
|
+
# when deprecated version of `--ext` is called
|
704
|
+
# print out deprecation warning and pretend `--ext=c` was provided
|
705
|
+
if deprecated_ext_value?(arguments)
|
706
|
+
message = "Extensions can now be generated using C or Rust, so `--ext` with no arguments has been deprecated. Please select a language, e.g. `--ext=rust` to generate a Rust extension. This gem will now be generated as if `--ext=c` was used."
|
707
|
+
removed_message = "Extensions can now be generated using C or Rust, so `--ext` with no arguments has been removed. Please select a language, e.g. `--ext=rust` to generate a Rust extension."
|
708
|
+
SharedHelpers.major_deprecation 2, message, removed_message: removed_message
|
709
|
+
arguments[arguments.index("--ext")] = "--ext=c"
|
710
|
+
end
|
711
|
+
end
|
712
|
+
|
713
|
+
def self.deprecated_ext_value?(arguments)
|
714
|
+
index = arguments.index("--ext")
|
715
|
+
next_argument = arguments[index + 1]
|
716
|
+
|
717
|
+
# it is ok when --ext is followed with valid extension value
|
718
|
+
# for example `bundle gem hello --ext c`
|
719
|
+
return false if EXTENSIONS.include?(next_argument)
|
720
|
+
|
721
|
+
# deprecated call when --ext is called with no value in last position
|
722
|
+
# for example `bundle gem hello_gem --ext`
|
723
|
+
return true if next_argument.nil?
|
724
|
+
|
725
|
+
# deprecated call when --ext is followed by other parameter
|
726
|
+
# for example `bundle gem --ext --no-ci hello_gem`
|
727
|
+
return true if next_argument.start_with?("-")
|
728
|
+
|
729
|
+
# deprecated call when --ext is followed by gem name
|
730
|
+
# for example `bundle gem --ext hello_gem`
|
731
|
+
return true if next_argument
|
732
|
+
|
733
|
+
false
|
734
|
+
end
|
735
|
+
|
736
|
+
private
|
737
|
+
|
738
|
+
# Automatically invoke `bundle install` and resume if
|
739
|
+
# Bundler.settings[:auto_install] exists. This is set through config cmd
|
740
|
+
# `bundle config set --global auto_install 1`.
|
741
|
+
#
|
742
|
+
# Note that this method `nil`s out the global Definition object, so it
|
743
|
+
# should be called first, before you instantiate anything like an
|
744
|
+
# `Installer` that'll keep a reference to the old one instead.
|
745
|
+
def auto_install
|
746
|
+
return unless Bundler.settings[:auto_install]
|
747
|
+
|
748
|
+
begin
|
749
|
+
Bundler.definition.specs
|
750
|
+
rescue GemNotFound, GitError
|
751
|
+
Bundler.ui.info "Automatically installing missing gems."
|
752
|
+
Bundler.reset!
|
753
|
+
invoke :install, []
|
754
|
+
Bundler.reset!
|
755
|
+
end
|
756
|
+
end
|
757
|
+
|
758
|
+
def current_command
|
759
|
+
_, _, config = @_initializer
|
760
|
+
config[:current_command]
|
761
|
+
end
|
762
|
+
|
763
|
+
def print_command
|
764
|
+
return unless Bundler.ui.debug?
|
765
|
+
cmd = current_command
|
766
|
+
command_name = cmd.name
|
767
|
+
return if PARSEABLE_COMMANDS.include?(command_name)
|
768
|
+
command = ["bundle", command_name] + args
|
769
|
+
options_to_print = options.dup
|
770
|
+
options_to_print.delete_if do |k, v|
|
771
|
+
next unless o = cmd.options[k]
|
772
|
+
o.default == v
|
773
|
+
end
|
774
|
+
command << Thor::Options.to_switches(options_to_print.sort_by(&:first)).strip
|
775
|
+
command.reject!(&:empty?)
|
776
|
+
Bundler.ui.info "Running `#{command * " "}` with bundler #{Bundler::VERSION}"
|
777
|
+
end
|
778
|
+
|
779
|
+
def warn_on_outdated_bundler
|
780
|
+
return if Bundler.settings[:disable_version_check]
|
781
|
+
|
782
|
+
command_name = current_command.name
|
783
|
+
return if PARSEABLE_COMMANDS.include?(command_name)
|
784
|
+
|
785
|
+
return unless SharedHelpers.md5_available?
|
786
|
+
|
787
|
+
latest = Fetcher::CompactIndex.
|
788
|
+
new(nil, Source::Rubygems::Remote.new(Bundler::URI("https://rubygems.org")), nil, nil).
|
789
|
+
send(:compact_index_client).
|
790
|
+
instance_variable_get(:@cache).
|
791
|
+
dependencies("bundler").
|
792
|
+
map {|d| Gem::Version.new(d.first) }.
|
793
|
+
max
|
794
|
+
return unless latest
|
795
|
+
|
796
|
+
current = Gem::Version.new(VERSION)
|
797
|
+
return if current >= latest
|
798
|
+
|
799
|
+
Bundler.ui.warn \
|
800
|
+
"The latest bundler is #{latest}, but you are currently running #{current}.\n" \
|
801
|
+
"To update to the most recent version, run `bundle update --bundler`"
|
802
|
+
rescue RuntimeError
|
803
|
+
nil
|
804
|
+
end
|
805
|
+
|
806
|
+
def remembered_negative_flag_deprecation(name)
|
807
|
+
positive_name = name.gsub(/\Ano-/, "")
|
808
|
+
option = current_command.options[positive_name]
|
809
|
+
flag_name = "--no-" + option.switch_name.gsub(/\A--/, "")
|
810
|
+
|
811
|
+
flag_deprecation(positive_name, flag_name, option)
|
812
|
+
end
|
813
|
+
|
814
|
+
def remembered_flag_deprecation(name)
|
815
|
+
option = current_command.options[name]
|
816
|
+
flag_name = option.switch_name
|
817
|
+
|
818
|
+
flag_deprecation(name, flag_name, option)
|
819
|
+
end
|
820
|
+
|
821
|
+
def flag_deprecation(name, flag_name, option)
|
822
|
+
name_index = ARGV.find {|arg| flag_name == arg.split("=")[0] }
|
823
|
+
return unless name_index
|
824
|
+
|
825
|
+
value = options[name]
|
826
|
+
value = value.join(" ").to_s if option.type == :array
|
827
|
+
value = "'#{value}'" unless option.type == :boolean
|
828
|
+
|
829
|
+
print_remembered_flag_deprecation(flag_name, name.tr("-", "_"), value)
|
830
|
+
end
|
831
|
+
|
832
|
+
def print_remembered_flag_deprecation(flag_name, option_name, option_value)
|
833
|
+
message =
|
834
|
+
"The `#{flag_name}` flag is deprecated because it relies on being " \
|
835
|
+
"remembered across bundler invocations, which bundler will no longer " \
|
836
|
+
"do in future versions. Instead please use `bundle config set #{option_name} " \
|
837
|
+
"#{option_value}`, and stop using this flag"
|
838
|
+
removed_message =
|
839
|
+
"The `#{flag_name}` flag has been removed because it relied on being " \
|
840
|
+
"remembered across bundler invocations, which bundler will no longer " \
|
841
|
+
"do. Instead please use `bundle config set #{option_name} " \
|
842
|
+
"#{option_value}`, and stop using this flag"
|
843
|
+
Bundler::SharedHelpers.major_deprecation 2, message, removed_message: removed_message
|
844
|
+
end
|
845
|
+
end
|
846
|
+
end
|