rubygems-update 3.4.22 → 3.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +105 -2
- data/Manifest.txt +46 -221
- data/README.md +1 -3
- data/bundler/CHANGELOG.md +63 -0
- data/bundler/bundler.gemspec +4 -2
- data/bundler/exe/bundle +1 -10
- data/bundler/lib/bundler/build_metadata.rb +3 -3
- data/bundler/lib/bundler/capistrano.rb +1 -1
- data/bundler/lib/bundler/checksum.rb +254 -0
- data/bundler/lib/bundler/ci_detector.rb +75 -0
- data/bundler/lib/bundler/cli/add.rb +3 -3
- data/bundler/lib/bundler/cli/binstubs.rb +4 -4
- data/bundler/lib/bundler/cli/cache.rb +1 -1
- data/bundler/lib/bundler/cli/check.rb +1 -1
- data/bundler/lib/bundler/cli/common.rb +9 -1
- data/bundler/lib/bundler/cli/config.rb +8 -7
- data/bundler/lib/bundler/cli/console.rb +3 -2
- data/bundler/lib/bundler/cli/doctor.rb +2 -2
- data/bundler/lib/bundler/cli/exec.rb +1 -1
- data/bundler/lib/bundler/cli/gem.rb +28 -23
- data/bundler/lib/bundler/cli/info.rb +2 -13
- data/bundler/lib/bundler/cli/install.rb +5 -4
- data/bundler/lib/bundler/cli/issue.rb +1 -1
- data/bundler/lib/bundler/cli/lock.rb +4 -4
- data/bundler/lib/bundler/cli/open.rb +1 -1
- data/bundler/lib/bundler/cli/outdated.rb +6 -6
- data/bundler/lib/bundler/cli/plugin.rb +7 -14
- data/bundler/lib/bundler/cli/pristine.rb +38 -30
- data/bundler/lib/bundler/cli/show.rb +2 -2
- data/bundler/lib/bundler/cli/update.rb +5 -5
- data/bundler/lib/bundler/cli.rb +215 -263
- data/bundler/lib/bundler/compact_index_client/cache.rb +29 -9
- data/bundler/lib/bundler/compact_index_client/cache_file.rb +153 -0
- data/bundler/lib/bundler/compact_index_client/gem_parser.rb +7 -3
- data/bundler/lib/bundler/compact_index_client/updater.rb +79 -81
- data/bundler/lib/bundler/compact_index_client.rb +14 -7
- data/bundler/lib/bundler/constants.rb +1 -1
- data/bundler/lib/bundler/current_ruby.rb +5 -21
- data/bundler/lib/bundler/definition.rb +42 -15
- data/bundler/lib/bundler/dependency.rb +16 -12
- data/bundler/lib/bundler/digest.rb +2 -2
- data/bundler/lib/bundler/dsl.rb +46 -30
- data/bundler/lib/bundler/endpoint_specification.rb +5 -1
- data/bundler/lib/bundler/env.rb +1 -3
- data/bundler/lib/bundler/errors.rb +43 -0
- data/bundler/lib/bundler/fetcher/base.rb +3 -1
- data/bundler/lib/bundler/fetcher/compact_index.rb +4 -4
- data/bundler/lib/bundler/fetcher/downloader.rb +13 -11
- data/bundler/lib/bundler/fetcher/gem_remote_fetcher.rb +16 -0
- data/bundler/lib/bundler/fetcher/index.rb +1 -1
- data/bundler/lib/bundler/fetcher.rb +28 -25
- data/bundler/lib/bundler/friendly_errors.rb +5 -5
- data/bundler/lib/bundler/gem_helper.rb +1 -1
- data/bundler/lib/bundler/gem_helpers.rb +5 -2
- data/bundler/lib/bundler/graph.rb +9 -9
- data/bundler/lib/bundler/index.rb +1 -2
- data/bundler/lib/bundler/injector.rb +1 -1
- data/bundler/lib/bundler/inline.rb +3 -3
- data/bundler/lib/bundler/installer/gem_installer.rb +5 -5
- data/bundler/lib/bundler/installer/parallel_installer.rb +16 -8
- data/bundler/lib/bundler/installer/standalone.rb +2 -3
- data/bundler/lib/bundler/installer.rb +9 -9
- data/bundler/lib/bundler/lazy_specification.rb +24 -17
- data/bundler/lib/bundler/lockfile_generator.rb +9 -0
- data/bundler/lib/bundler/lockfile_parser.rb +81 -10
- data/bundler/lib/bundler/man/bundle-add.1 +3 -26
- data/bundler/lib/bundler/man/bundle-binstubs.1 +4 -16
- data/bundler/lib/bundler/man/bundle-cache.1 +3 -24
- data/bundler/lib/bundler/man/bundle-check.1 +3 -12
- data/bundler/lib/bundler/man/bundle-clean.1 +3 -10
- data/bundler/lib/bundler/man/bundle-config.1 +20 -211
- data/bundler/lib/bundler/man/bundle-config.1.ronn +6 -0
- data/bundler/lib/bundler/man/bundle-console.1 +4 -22
- data/bundler/lib/bundler/man/bundle-doctor.1 +4 -18
- data/bundler/lib/bundler/man/bundle-exec.1 +12 -73
- data/bundler/lib/bundler/man/bundle-gem.1 +13 -49
- data/bundler/lib/bundler/man/bundle-help.1 +3 -7
- data/bundler/lib/bundler/man/bundle-info.1 +3 -9
- data/bundler/lib/bundler/man/bundle-init.1 +3 -12
- data/bundler/lib/bundler/man/bundle-inject.1 +6 -19
- data/bundler/lib/bundler/man/bundle-install.1 +27 -125
- data/bundler/lib/bundler/man/bundle-install.1.ronn +1 -0
- data/bundler/lib/bundler/man/bundle-list.1 +4 -19
- data/bundler/lib/bundler/man/bundle-lock.1 +5 -29
- data/bundler/lib/bundler/man/bundle-open.1 +7 -27
- data/bundler/lib/bundler/man/bundle-outdated.1 +3 -55
- data/bundler/lib/bundler/man/bundle-outdated.1.ronn +1 -0
- data/bundler/lib/bundler/man/bundle-platform.1 +5 -27
- data/bundler/lib/bundler/man/bundle-plugin.1 +3 -29
- data/bundler/lib/bundler/man/bundle-pristine.1 +5 -16
- data/bundler/lib/bundler/man/bundle-remove.1 +4 -14
- data/bundler/lib/bundler/man/bundle-show.1 +3 -10
- data/bundler/lib/bundler/man/bundle-update.1 +18 -137
- data/bundler/lib/bundler/man/bundle-version.1 +3 -16
- data/bundler/lib/bundler/man/bundle-viz.1 +4 -16
- data/bundler/lib/bundler/man/bundle.1 +5 -44
- data/bundler/lib/bundler/man/gemfile.5 +24 -301
- data/bundler/lib/bundler/man/gemfile.5.ronn +4 -0
- data/bundler/lib/bundler/match_metadata.rb +4 -0
- data/bundler/lib/bundler/match_platform.rb +1 -1
- data/bundler/lib/bundler/plugin/api/source.rb +3 -2
- data/bundler/lib/bundler/plugin/installer.rb +1 -1
- data/bundler/lib/bundler/plugin.rb +3 -3
- data/bundler/lib/bundler/resolver/base.rb +1 -1
- data/bundler/lib/bundler/resolver/incompatibility.rb +1 -1
- data/bundler/lib/bundler/resolver/spec_group.rb +1 -4
- data/bundler/lib/bundler/resolver.rb +16 -16
- data/bundler/lib/bundler/ruby_dsl.rb +20 -12
- data/bundler/lib/bundler/ruby_version.rb +1 -1
- data/bundler/lib/bundler/rubygems_ext.rb +24 -50
- data/bundler/lib/bundler/rubygems_gem_installer.rb +6 -56
- data/bundler/lib/bundler/rubygems_integration.rb +25 -94
- data/bundler/lib/bundler/runtime.rb +2 -2
- data/bundler/lib/bundler/self_manager.rb +23 -7
- data/bundler/lib/bundler/settings.rb +27 -7
- data/bundler/lib/bundler/setup.rb +4 -1
- data/bundler/lib/bundler/shared_helpers.rb +35 -13
- data/bundler/lib/bundler/source/git/git_proxy.rb +15 -15
- data/bundler/lib/bundler/source/git.rb +4 -3
- data/bundler/lib/bundler/source/metadata.rb +15 -15
- data/bundler/lib/bundler/source/path.rb +7 -6
- data/bundler/lib/bundler/source/rubygems.rb +21 -14
- data/bundler/lib/bundler/source.rb +2 -0
- data/bundler/lib/bundler/spec_set.rb +38 -10
- data/bundler/lib/bundler/stub_specification.rb +1 -0
- data/bundler/lib/bundler/templates/Executable.bundler +1 -1
- data/bundler/lib/bundler/templates/newgem/README.md.tt +3 -3
- data/bundler/lib/bundler/templates/newgem/Rakefile.tt +2 -6
- data/bundler/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +1 -1
- data/bundler/lib/bundler/templates/newgem/standard.yml.tt +1 -1
- data/bundler/lib/bundler/ui/shell.rb +1 -1
- data/bundler/lib/bundler/vendor/connection_pool/.document +1 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +1 -1
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +53 -6
- data/bundler/lib/bundler/vendor/fileutils/.document +1 -0
- data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +8 -20
- data/bundler/lib/bundler/vendor/net-http-persistent/.document +1 -0
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +3 -3
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +2 -2
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +1 -1
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +34 -34
- data/bundler/lib/bundler/vendor/pub_grub/.document +1 -0
- data/bundler/lib/bundler/vendor/thor/.document +1 -0
- data/bundler/lib/bundler/vendor/tsort/.document +1 -0
- data/bundler/lib/bundler/vendor/tsort/lib/tsort.rb +3 -0
- data/bundler/lib/bundler/vendor/uri/.document +1 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +256 -132
- data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +1 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +95 -31
- data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
- data/bundler/lib/bundler/vendored_net_http.rb +8 -0
- data/bundler/lib/bundler/vendored_persistent.rb +0 -4
- data/bundler/lib/bundler/vendored_timeout.rb +8 -0
- data/bundler/lib/bundler/version.rb +1 -1
- data/bundler/lib/bundler/vlad.rb +1 -1
- data/bundler/lib/bundler/yaml_serializer.rb +3 -3
- data/bundler/lib/bundler.rb +41 -32
- data/lib/rubygems/available_set.rb +4 -4
- data/lib/rubygems/basic_specification.rb +35 -37
- data/lib/rubygems/bundler_version_finder.rb +4 -4
- data/lib/rubygems/ci_detector.rb +75 -0
- data/lib/rubygems/command.rb +13 -15
- data/lib/rubygems/command_manager.rb +5 -4
- data/lib/rubygems/commands/build_command.rb +2 -2
- data/lib/rubygems/commands/cert_command.rb +1 -2
- data/lib/rubygems/commands/check_command.rb +4 -4
- data/lib/rubygems/commands/cleanup_command.rb +12 -14
- data/lib/rubygems/commands/contents_command.rb +4 -4
- data/lib/rubygems/commands/dependency_command.rb +4 -5
- data/lib/rubygems/commands/environment_command.rb +1 -3
- data/lib/rubygems/commands/exec_command.rb +1 -1
- data/lib/rubygems/commands/fetch_command.rb +2 -2
- data/lib/rubygems/commands/generate_index_command.rb +39 -74
- data/lib/rubygems/commands/help_command.rb +3 -3
- data/lib/rubygems/commands/info_command.rb +2 -2
- data/lib/rubygems/commands/install_command.rb +8 -16
- data/lib/rubygems/commands/list_command.rb +2 -2
- data/lib/rubygems/commands/lock_command.rb +1 -1
- data/lib/rubygems/commands/open_command.rb +1 -1
- data/lib/rubygems/commands/owner_command.rb +1 -1
- data/lib/rubygems/commands/pristine_command.rb +13 -15
- data/lib/rubygems/commands/push_command.rb +2 -2
- data/lib/rubygems/commands/query_command.rb +4 -5
- data/lib/rubygems/commands/rdoc_command.rb +2 -2
- data/lib/rubygems/commands/search_command.rb +2 -2
- data/lib/rubygems/commands/setup_command.rb +31 -34
- data/lib/rubygems/commands/sources_command.rb +12 -12
- data/lib/rubygems/commands/specification_command.rb +10 -10
- data/lib/rubygems/commands/stale_command.rb +1 -1
- data/lib/rubygems/commands/uninstall_command.rb +9 -10
- data/lib/rubygems/commands/unpack_command.rb +4 -4
- data/lib/rubygems/commands/update_command.rb +10 -12
- data/lib/rubygems/commands/which_command.rb +1 -1
- data/lib/rubygems/commands/yank_command.rb +1 -1
- data/lib/rubygems/compatibility.rb +5 -6
- data/lib/rubygems/config_file.rb +4 -4
- data/lib/rubygems/core_ext/kernel_gem.rb +0 -2
- data/lib/rubygems/core_ext/kernel_require.rb +19 -48
- data/lib/rubygems/core_ext/kernel_warn.rb +1 -1
- data/lib/rubygems/core_ext/tcpsocket_init.rb +1 -1
- data/lib/rubygems/defaults.rb +15 -3
- data/lib/rubygems/dependency.rb +12 -14
- data/lib/rubygems/dependency_installer.rb +29 -30
- data/lib/rubygems/dependency_list.rb +1 -1
- data/lib/rubygems/deprecate.rb +16 -15
- data/lib/rubygems/doctor.rb +5 -5
- data/lib/rubygems/errors.rb +2 -6
- data/lib/rubygems/exceptions.rb +2 -1
- data/lib/rubygems/ext/builder.rb +15 -10
- data/lib/rubygems/ext/cargo_builder.rb +5 -5
- data/lib/rubygems/ext/ext_conf_builder.rb +1 -3
- data/lib/rubygems/gem_runner.rb +4 -4
- data/lib/rubygems/gemcutter_utilities/webauthn_listener/response.rb +3 -3
- data/lib/rubygems/gemcutter_utilities/webauthn_poller.rb +3 -3
- data/lib/rubygems/gemcutter_utilities.rb +18 -19
- data/lib/rubygems/install_update_options.rb +18 -19
- data/lib/rubygems/installer.rb +59 -33
- data/lib/rubygems/installer_uninstaller_utils.rb +0 -2
- data/lib/rubygems/local_remote_options.rb +7 -10
- data/lib/rubygems/name_tuple.rb +7 -9
- 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/optparse/lib/optparse.rb +39 -17
- data/lib/rubygems/package/old.rb +2 -2
- data/lib/rubygems/package/tar_header.rb +45 -39
- data/lib/rubygems/package/tar_reader/entry.rb +5 -4
- data/lib/rubygems/package/tar_reader.rb +5 -3
- data/lib/rubygems/package/tar_writer.rb +19 -17
- data/lib/rubygems/package.rb +27 -26
- data/lib/rubygems/package_task.rb +2 -2
- data/lib/rubygems/path_support.rb +9 -10
- data/lib/rubygems/platform.rb +60 -45
- data/lib/rubygems/query_utils.rb +7 -9
- data/lib/rubygems/remote_fetcher.rb +15 -15
- data/lib/rubygems/request/connection_pools.rb +3 -3
- data/lib/rubygems/request.rb +20 -17
- data/lib/rubygems/request_set/gem_dependency_api.rb +119 -122
- data/lib/rubygems/request_set/lockfile/parser.rb +9 -9
- data/lib/rubygems/request_set/lockfile/tokenizer.rb +20 -12
- data/lib/rubygems/request_set/lockfile.rb +6 -11
- data/lib/rubygems/request_set.rb +5 -5
- data/lib/rubygems/requirement.rb +7 -7
- 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 +1 -3
- data/lib/rubygems/resolver/api_set/gem_parser.rb +7 -3
- data/lib/rubygems/resolver/best_set.rb +1 -1
- data/lib/rubygems/resolver/composed_set.rb +1 -1
- data/lib/rubygems/resolver/conflict.rb +4 -12
- data/lib/rubygems/resolver/index_set.rb +4 -4
- data/lib/rubygems/resolver/index_specification.rb +2 -2
- data/lib/rubygems/resolver/installer_set.rb +5 -6
- data/lib/rubygems/resolver/lock_set.rb +1 -1
- data/lib/rubygems/resolver/molinillo/.document +1 -0
- data/lib/rubygems/resolver.rb +3 -10
- data/lib/rubygems/s3_uri_signer.rb +6 -6
- 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 +5 -28
- data/lib/rubygems/security/policies.rb +36 -38
- data/lib/rubygems/security/policy.rb +7 -11
- data/lib/rubygems/security/signer.rb +1 -1
- data/lib/rubygems/security/trust_dir.rb +3 -3
- data/lib/rubygems/security.rb +8 -22
- data/lib/rubygems/source/git.rb +1 -3
- data/lib/rubygems/source/installed.rb +0 -2
- data/lib/rubygems/source/local.rb +5 -8
- data/lib/rubygems/source/lock.rb +1 -3
- data/lib/rubygems/source/specific_file.rb +0 -1
- data/lib/rubygems/source/vendor.rb +0 -2
- data/lib/rubygems/source.rb +12 -12
- data/lib/rubygems/source_list.rb +4 -4
- data/lib/rubygems/spec_fetcher.rb +29 -29
- data/lib/rubygems/specification.rb +125 -138
- data/lib/rubygems/specification_policy.rb +55 -25
- data/lib/rubygems/stub_specification.rb +4 -5
- data/lib/rubygems/text.rb +1 -2
- 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/lib/tsort.rb +3 -0
- data/lib/rubygems/uninstaller.rb +7 -9
- data/lib/rubygems/update_suggestion.rb +5 -18
- data/lib/rubygems/uri_formatter.rb +1 -1
- data/lib/rubygems/user_interaction.rb +15 -21
- data/lib/rubygems/util/licenses.rb +65 -35
- data/lib/rubygems/util/list.rb +3 -1
- data/lib/rubygems/util.rb +2 -4
- data/lib/rubygems/validator.rb +5 -3
- data/lib/rubygems/version.rb +34 -28
- data/lib/rubygems/version_option.rb +2 -5
- data/lib/rubygems/yaml_serializer.rb +3 -3
- data/lib/rubygems.rb +37 -37
- data/rubygems-update.gemspec +4 -4
- data/setup.rb +2 -2
- metadata +50 -225
- data/lib/rubygems/indexer.rb +0 -428
- data/lib/rubygems/mock_gem_ui.rb +0 -86
- data/test/rubygems/alternate_cert.pem +0 -19
- data/test/rubygems/alternate_cert_32.pem +0 -19
- data/test/rubygems/alternate_key.pem +0 -27
- data/test/rubygems/bad_rake.rb +0 -3
- data/test/rubygems/bundler_test_gem.rb +0 -424
- data/test/rubygems/ca_cert.pem +0 -77
- data/test/rubygems/child_cert.pem +0 -19
- data/test/rubygems/child_cert_32.pem +0 -19
- data/test/rubygems/child_key.pem +0 -27
- data/test/rubygems/client.pem +0 -107
- data/test/rubygems/data/excon-0.7.7.gemspec.rz +0 -0
- data/test/rubygems/data/gem-private_key.pem +0 -27
- data/test/rubygems/data/gem-public_cert.pem +0 -20
- data/test/rubygems/data/null-required-ruby-version.gemspec.rz +0 -0
- data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
- data/test/rubygems/data/pry-0.4.7.gemspec.rz +0 -0
- data/test/rubygems/encrypted_private_key.pem +0 -30
- data/test/rubygems/expired_cert.pem +0 -19
- data/test/rubygems/fake_certlib/openssl.rb +0 -9
- data/test/rubygems/foo/discover.rb +0 -1
- data/test/rubygems/future_cert.pem +0 -19
- data/test/rubygems/future_cert_32.pem +0 -19
- data/test/rubygems/good_rake.rb +0 -3
- data/test/rubygems/grandchild_cert.pem +0 -19
- data/test/rubygems/grandchild_cert_32.pem +0 -19
- data/test/rubygems/grandchild_key.pem +0 -27
- data/test/rubygems/helper.rb +0 -1649
- data/test/rubygems/installer_test_case.rb +0 -248
- data/test/rubygems/invalid_client.pem +0 -49
- data/test/rubygems/invalid_issuer_cert.pem +0 -20
- data/test/rubygems/invalid_issuer_cert_32.pem +0 -20
- data/test/rubygems/invalid_key.pem +0 -27
- data/test/rubygems/invalid_signer_cert.pem +0 -19
- data/test/rubygems/invalid_signer_cert_32.pem +0 -19
- data/test/rubygems/invalidchild_cert.pem +0 -19
- data/test/rubygems/invalidchild_cert_32.pem +0 -19
- data/test/rubygems/invalidchild_key.pem +0 -27
- data/test/rubygems/multifactor_auth_utilities.rb +0 -111
- data/test/rubygems/package/tar_test_case.rb +0 -175
- data/test/rubygems/packages/Bluebie-legs-0.6.2.gem +0 -0
- data/test/rubygems/packages/ascii_binder-0.1.10.1.gem +0 -0
- data/test/rubygems/packages/ill-formatted-platform-1.0.0.10.gem +0 -0
- data/test/rubygems/plugin/exception/rubygems_plugin.rb +0 -4
- data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -5
- data/test/rubygems/plugin/standarderror/rubygems_plugin.rb +0 -4
- data/test/rubygems/private3072_key.pem +0 -40
- data/test/rubygems/private_ec_key.pem +0 -9
- data/test/rubygems/private_key.pem +0 -27
- data/test/rubygems/public3072_cert.pem +0 -25
- data/test/rubygems/public_cert.pem +0 -20
- data/test/rubygems/public_cert_32.pem +0 -19
- data/test/rubygems/public_key.pem +0 -9
- data/test/rubygems/rubygems/commands/crash_command.rb +0 -5
- data/test/rubygems/rubygems_plugin.rb +0 -24
- data/test/rubygems/sff/discover.rb +0 -1
- data/test/rubygems/simple_gem.rb +0 -68
- 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/specifications/rubyforge-0.0.1.gemspec +0 -14
- data/test/rubygems/ssl_cert.pem +0 -80
- data/test/rubygems/ssl_key.pem +0 -27
- data/test/rubygems/test_bundled_ca.rb +0 -61
- data/test/rubygems/test_config.rb +0 -28
- data/test/rubygems/test_deprecate.rb +0 -158
- data/test/rubygems/test_exit.rb +0 -17
- data/test/rubygems/test_gem.rb +0 -1799
- data/test/rubygems/test_gem_available_set.rb +0 -130
- data/test/rubygems/test_gem_bundler_version_finder.rb +0 -127
- data/test/rubygems/test_gem_command.rb +0 -403
- data/test/rubygems/test_gem_command_manager.rb +0 -400
- data/test/rubygems/test_gem_commands_build_command.rb +0 -739
- data/test/rubygems/test_gem_commands_cert_command.rb +0 -866
- data/test/rubygems/test_gem_commands_check_command.rb +0 -68
- data/test/rubygems/test_gem_commands_cleanup_command.rb +0 -292
- data/test/rubygems/test_gem_commands_contents_command.rb +0 -271
- data/test/rubygems/test_gem_commands_dependency_command.rb +0 -228
- data/test/rubygems/test_gem_commands_environment_command.rb +0 -169
- data/test/rubygems/test_gem_commands_exec_command.rb +0 -857
- data/test/rubygems/test_gem_commands_fetch_command.rb +0 -258
- data/test/rubygems/test_gem_commands_generate_index_command.rb +0 -81
- data/test/rubygems/test_gem_commands_help_command.rb +0 -94
- data/test/rubygems/test_gem_commands_info_command.rb +0 -70
- data/test/rubygems/test_gem_commands_install_command.rb +0 -1573
- data/test/rubygems/test_gem_commands_list_command.rb +0 -33
- data/test/rubygems/test_gem_commands_lock_command.rb +0 -67
- data/test/rubygems/test_gem_commands_mirror.rb +0 -20
- data/test/rubygems/test_gem_commands_open_command.rb +0 -101
- data/test/rubygems/test_gem_commands_outdated_command.rb +0 -50
- data/test/rubygems/test_gem_commands_owner_command.rb +0 -503
- data/test/rubygems/test_gem_commands_pristine_command.rb +0 -708
- data/test/rubygems/test_gem_commands_push_command.rb +0 -603
- data/test/rubygems/test_gem_commands_query_command.rb +0 -858
- data/test/rubygems/test_gem_commands_search_command.rb +0 -16
- data/test/rubygems/test_gem_commands_server_command.rb +0 -20
- data/test/rubygems/test_gem_commands_setup_command.rb +0 -474
- data/test/rubygems/test_gem_commands_signin_command.rb +0 -259
- data/test/rubygems/test_gem_commands_signout_command.rb +0 -30
- data/test/rubygems/test_gem_commands_sources_command.rb +0 -534
- data/test/rubygems/test_gem_commands_specification_command.rb +0 -277
- data/test/rubygems/test_gem_commands_stale_command.rb +0 -43
- data/test/rubygems/test_gem_commands_uninstall_command.rb +0 -542
- data/test/rubygems/test_gem_commands_unpack_command.rb +0 -224
- data/test/rubygems/test_gem_commands_update_command.rb +0 -836
- data/test/rubygems/test_gem_commands_which_command.rb +0 -85
- data/test/rubygems/test_gem_commands_yank_command.rb +0 -299
- data/test/rubygems/test_gem_config_file.rb +0 -551
- data/test/rubygems/test_gem_dependency.rb +0 -398
- data/test/rubygems/test_gem_dependency_installer.rb +0 -1190
- data/test/rubygems/test_gem_dependency_list.rb +0 -265
- data/test/rubygems/test_gem_dependency_resolution_error.rb +0 -27
- data/test/rubygems/test_gem_doctor.rb +0 -195
- data/test/rubygems/test_gem_ext_builder.rb +0 -337
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/.gitignore +0 -1
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/custom_name.gemspec +0 -10
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/Cargo.lock +0 -249
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/Cargo.toml +0 -10
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/src/lib.rs +0 -27
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/lib/custom_name.rb +0 -3
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/.gitignore +0 -1
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.lock +0 -249
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.toml +0 -10
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/rust_ruby_example.gemspec +0 -10
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/src/lib.rs +0 -51
- data/test/rubygems/test_gem_ext_cargo_builder.rb +0 -167
- data/test/rubygems/test_gem_ext_cargo_builder_link_flag_converter.rb +0 -34
- data/test/rubygems/test_gem_ext_cargo_builder_unit.rb +0 -60
- data/test/rubygems/test_gem_ext_cmake_builder.rb +0 -84
- data/test/rubygems/test_gem_ext_configure_builder.rb +0 -80
- data/test/rubygems/test_gem_ext_ext_conf_builder.rb +0 -229
- data/test/rubygems/test_gem_ext_rake_builder.rb +0 -113
- data/test/rubygems/test_gem_gem_runner.rb +0 -119
- data/test/rubygems/test_gem_gemcutter_utilities.rb +0 -361
- data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -60
- data/test/rubygems/test_gem_indexer.rb +0 -381
- data/test/rubygems/test_gem_install_update_options.rb +0 -208
- data/test/rubygems/test_gem_installer.rb +0 -2512
- data/test/rubygems/test_gem_local_remote_options.rb +0 -133
- data/test/rubygems/test_gem_name_tuple.rb +0 -43
- data/test/rubygems/test_gem_package.rb +0 -1306
- data/test/rubygems/test_gem_package_old.rb +0 -91
- data/test/rubygems/test_gem_package_tar_header.rb +0 -226
- data/test/rubygems/test_gem_package_tar_reader.rb +0 -150
- data/test/rubygems/test_gem_package_tar_reader_entry.rb +0 -350
- data/test/rubygems/test_gem_package_tar_writer.rb +0 -331
- data/test/rubygems/test_gem_package_task.rb +0 -118
- data/test/rubygems/test_gem_path_support.rb +0 -139
- data/test/rubygems/test_gem_platform.rb +0 -497
- data/test/rubygems/test_gem_rdoc.rb +0 -137
- data/test/rubygems/test_gem_remote_fetcher.rb +0 -1227
- data/test/rubygems/test_gem_request.rb +0 -547
- data/test/rubygems/test_gem_request_connection_pools.rb +0 -152
- data/test/rubygems/test_gem_request_set.rb +0 -672
- data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +0 -853
- data/test/rubygems/test_gem_request_set_lockfile.rb +0 -469
- data/test/rubygems/test_gem_request_set_lockfile_parser.rb +0 -544
- data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +0 -307
- data/test/rubygems/test_gem_requirement.rb +0 -505
- data/test/rubygems/test_gem_resolver.rb +0 -859
- data/test/rubygems/test_gem_resolver_activation_request.rb +0 -43
- data/test/rubygems/test_gem_resolver_api_set.rb +0 -210
- data/test/rubygems/test_gem_resolver_api_specification.rb +0 -167
- data/test/rubygems/test_gem_resolver_best_set.rb +0 -159
- data/test/rubygems/test_gem_resolver_composed_set.rb +0 -44
- data/test/rubygems/test_gem_resolver_conflict.rb +0 -82
- data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -83
- data/test/rubygems/test_gem_resolver_git_set.rb +0 -188
- data/test/rubygems/test_gem_resolver_git_specification.rb +0 -114
- data/test/rubygems/test_gem_resolver_index_set.rb +0 -88
- data/test/rubygems/test_gem_resolver_index_specification.rb +0 -93
- data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -47
- data/test/rubygems/test_gem_resolver_installer_set.rb +0 -320
- data/test/rubygems/test_gem_resolver_local_specification.rb +0 -44
- data/test/rubygems/test_gem_resolver_lock_set.rb +0 -62
- data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -98
- data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -19
- data/test/rubygems/test_gem_resolver_specification.rb +0 -63
- data/test/rubygems/test_gem_resolver_vendor_set.rb +0 -82
- data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -82
- data/test/rubygems/test_gem_security.rb +0 -341
- data/test/rubygems/test_gem_security_policy.rb +0 -535
- data/test/rubygems/test_gem_security_signer.rb +0 -218
- data/test/rubygems/test_gem_security_trust_dir.rb +0 -99
- data/test/rubygems/test_gem_silent_ui.rb +0 -123
- data/test/rubygems/test_gem_source.rb +0 -254
- data/test/rubygems/test_gem_source_fetch_problem.rb +0 -37
- data/test/rubygems/test_gem_source_git.rb +0 -310
- data/test/rubygems/test_gem_source_installed.rb +0 -35
- data/test/rubygems/test_gem_source_list.rb +0 -119
- data/test/rubygems/test_gem_source_local.rb +0 -107
- data/test/rubygems/test_gem_source_lock.rb +0 -113
- data/test/rubygems/test_gem_source_specific_file.rb +0 -76
- data/test/rubygems/test_gem_source_subpath_problem.rb +0 -50
- data/test/rubygems/test_gem_source_vendor.rb +0 -30
- data/test/rubygems/test_gem_spec_fetcher.rb +0 -338
- data/test/rubygems/test_gem_specification.rb +0 -3856
- data/test/rubygems/test_gem_stream_ui.rb +0 -255
- data/test/rubygems/test_gem_stub_specification.rb +0 -278
- data/test/rubygems/test_gem_text.rb +0 -103
- data/test/rubygems/test_gem_uninstaller.rb +0 -675
- data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -31
- data/test/rubygems/test_gem_update_suggestion.rb +0 -209
- data/test/rubygems/test_gem_uri.rb +0 -41
- data/test/rubygems/test_gem_uri_formatter.rb +0 -27
- data/test/rubygems/test_gem_util.rb +0 -91
- data/test/rubygems/test_gem_validator.rb +0 -42
- data/test/rubygems/test_gem_version.rb +0 -305
- data/test/rubygems/test_gem_version_option.rb +0 -165
- data/test/rubygems/test_kernel.rb +0 -124
- data/test/rubygems/test_project_sanity.rb +0 -49
- data/test/rubygems/test_remote_fetch_error.rb +0 -20
- data/test/rubygems/test_require.rb +0 -732
- data/test/rubygems/test_rubygems.rb +0 -76
- data/test/rubygems/test_webauthn_listener.rb +0 -143
- data/test/rubygems/test_webauthn_listener_response.rb +0 -93
- data/test/rubygems/test_webauthn_poller.rb +0 -124
- data/test/rubygems/utilities.rb +0 -436
- data/test/rubygems/wrong_key_cert.pem +0 -19
- data/test/rubygems/wrong_key_cert_32.pem +0 -19
- data/test/test_changelog_generator.rb +0 -17
data/bundler/lib/bundler/cli.rb
CHANGED
@@ -80,10 +80,10 @@ module Bundler
|
|
80
80
|
unprinted_warnings.each {|w| Bundler.ui.warn(w) }
|
81
81
|
end
|
82
82
|
|
83
|
-
check_unknown_options!(:
|
83
|
+
check_unknown_options!(except: [:config, :exec])
|
84
84
|
stop_on_unknown_option! :exec
|
85
85
|
|
86
|
-
desc "cli_help", "Prints a summary of bundler commands", :
|
86
|
+
desc "cli_help", "Prints a summary of bundler commands", hide: true
|
87
87
|
def cli_help
|
88
88
|
version
|
89
89
|
Bundler.ui.info "\n"
|
@@ -99,19 +99,19 @@ module Bundler
|
|
99
99
|
shell.say "Bundler commands:\n\n"
|
100
100
|
|
101
101
|
shell.say " Primary commands:\n"
|
102
|
-
shell.print_table(primary_commands, :
|
102
|
+
shell.print_table(primary_commands, indent: 4, truncate: true)
|
103
103
|
shell.say
|
104
104
|
shell.say " Utilities:\n"
|
105
|
-
shell.print_table(utilities, :
|
105
|
+
shell.print_table(utilities, indent: 4, truncate: true)
|
106
106
|
shell.say
|
107
107
|
self.class.send(:class_options_help, shell)
|
108
108
|
end
|
109
109
|
default_task(Bundler.feature_flag.default_cli_command)
|
110
110
|
|
111
|
-
class_option "no-color", :
|
112
|
-
class_option "retry", :
|
113
|
-
:
|
114
|
-
class_option "verbose", :
|
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
115
|
|
116
116
|
def help(cli = nil)
|
117
117
|
case cli
|
@@ -127,8 +127,8 @@ module Bundler
|
|
127
127
|
|
128
128
|
if man_pages.include?(command)
|
129
129
|
man_page = man_pages[command]
|
130
|
-
if Bundler.which("man") && man_path
|
131
|
-
Kernel.exec
|
130
|
+
if Bundler.which("man") && !man_path.match?(%r{^file:/.+!/META-INF/jruby.home/.+})
|
131
|
+
Kernel.exec("man", man_page)
|
132
132
|
else
|
133
133
|
puts File.read("#{man_path}/#{File.basename(man_page)}.ronn")
|
134
134
|
end
|
@@ -155,8 +155,8 @@ module Bundler
|
|
155
155
|
Gemfile to a gem with a gemspec, the --gemspec option will automatically add each
|
156
156
|
dependency listed in the gemspec file to the newly created Gemfile.
|
157
157
|
D
|
158
|
-
method_option "gemspec", :
|
159
|
-
method_option "gemfile", :
|
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
160
|
def init
|
161
161
|
require_relative "cli/init"
|
162
162
|
Init.new(options.dup).run
|
@@ -168,12 +168,9 @@ module Bundler
|
|
168
168
|
all gems are found, Bundler prints a success message and exits with a status of 0.
|
169
169
|
If not, the first missing gem is listed and Bundler exits status 1.
|
170
170
|
D
|
171
|
-
method_option "dry-run", :
|
172
|
-
|
173
|
-
method_option "
|
174
|
-
"Use the specified gemfile instead of Gemfile"
|
175
|
-
method_option "path", :type => :string, :banner =>
|
176
|
-
"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?}"
|
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?}"
|
177
174
|
def check
|
178
175
|
remembered_flag_deprecation("path")
|
179
176
|
|
@@ -187,10 +184,14 @@ module Bundler
|
|
187
184
|
long_desc <<-D
|
188
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.
|
189
186
|
D
|
190
|
-
method_option "install", :
|
191
|
-
"Runs 'bundle install' after removing the gems from the Gemfile"
|
187
|
+
method_option "install", type: :boolean, banner: "Runs 'bundle install' after removing the gems from the Gemfile"
|
192
188
|
def remove(*gems)
|
193
|
-
|
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
|
+
|
194
195
|
require_relative "cli/remove"
|
195
196
|
Remove.new(gems, options).run
|
196
197
|
end
|
@@ -206,58 +207,40 @@ module Bundler
|
|
206
207
|
|
207
208
|
If the bundle has already been installed, bundler will tell you so and then exit.
|
208
209
|
D
|
209
|
-
method_option "binstubs", :
|
210
|
-
|
211
|
-
method_option "
|
212
|
-
|
213
|
-
method_option "
|
214
|
-
|
215
|
-
method_option "
|
216
|
-
|
217
|
-
method_option "
|
218
|
-
|
219
|
-
method_option "
|
220
|
-
|
221
|
-
method_option "
|
222
|
-
|
223
|
-
method_option "
|
224
|
-
|
225
|
-
method_option "
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
method_option "
|
230
|
-
"Force downloading every gem."
|
231
|
-
method_option "no-prune", :type => :boolean, :banner =>
|
232
|
-
"Don't remove stale gems from the cache."
|
233
|
-
method_option "path", :type => :string, :banner =>
|
234
|
-
"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?}"
|
235
|
-
method_option "quiet", :type => :boolean, :banner =>
|
236
|
-
"Only output warnings and errors."
|
237
|
-
method_option "shebang", :type => :string, :banner =>
|
238
|
-
"Specify a different shebang executable name than the default (usually 'ruby')"
|
239
|
-
method_option "standalone", :type => :array, :lazy_default => [], :banner =>
|
240
|
-
"Make a bundle that can work without the Bundler runtime"
|
241
|
-
method_option "system", :type => :boolean, :banner =>
|
242
|
-
"Install to the system location ($BUNDLE_PATH or $GEM_HOME) even if the bundle was previously installed somewhere else for this application"
|
243
|
-
method_option "trust-policy", :alias => "P", :type => :string, :banner =>
|
244
|
-
"Gem trust policy (like gem install -P). Must be one of " +
|
245
|
-
Bundler.rubygems.security_policy_keys.join("|")
|
246
|
-
method_option "without", :type => :array, :banner =>
|
247
|
-
"Exclude gems that are part of the specified named group."
|
248
|
-
method_option "with", :type => :array, :banner =>
|
249
|
-
"Include gems that are part of the specified named group."
|
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."
|
250
231
|
def install
|
251
232
|
SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force")
|
252
233
|
|
253
|
-
%w[clean deployment frozen no-prune path shebang
|
234
|
+
%w[clean deployment frozen no-prune path shebang without with].each do |option|
|
254
235
|
remembered_flag_deprecation(option)
|
255
236
|
end
|
256
237
|
|
238
|
+
print_remembered_flag_deprecation("--system", "path.system", "true") if ARGV.include?("--system")
|
239
|
+
|
257
240
|
remembered_negative_flag_deprecation("no-deployment")
|
258
241
|
|
259
242
|
require_relative "cli/install"
|
260
|
-
Bundler.settings.temporary(:
|
243
|
+
Bundler.settings.temporary(no_install: false) do
|
261
244
|
Install.new(options.dup).run
|
262
245
|
end
|
263
246
|
end
|
@@ -270,44 +253,27 @@ module Bundler
|
|
270
253
|
update when you have changed the Gemfile, or if you want to get the newest
|
271
254
|
possible versions of the gems in the bundle.
|
272
255
|
D
|
273
|
-
method_option "full-index", :
|
274
|
-
|
275
|
-
method_option "
|
276
|
-
|
277
|
-
method_option "
|
278
|
-
|
279
|
-
method_option "
|
280
|
-
|
281
|
-
method_option "
|
282
|
-
|
283
|
-
method_option "
|
284
|
-
|
285
|
-
method_option "
|
286
|
-
|
287
|
-
method_option "
|
288
|
-
|
289
|
-
method_option "
|
290
|
-
"Update ruby specified in Gemfile.lock"
|
291
|
-
method_option "bundler", :type => :string, :lazy_default => "> 0.a", :banner =>
|
292
|
-
"Update the locked version of bundler"
|
293
|
-
method_option "patch", :type => :boolean, :banner =>
|
294
|
-
"Prefer updating only to next patch version"
|
295
|
-
method_option "minor", :type => :boolean, :banner =>
|
296
|
-
"Prefer updating only to next minor version"
|
297
|
-
method_option "major", :type => :boolean, :banner =>
|
298
|
-
"Prefer updating to next major version (default)"
|
299
|
-
method_option "pre", :type => :boolean, :banner =>
|
300
|
-
"Always choose the highest allowed version when updating gems, regardless of prerelease status"
|
301
|
-
method_option "strict", :type => :boolean, :banner =>
|
302
|
-
"Do not allow any gem to be updated past latest --patch | --minor | --major"
|
303
|
-
method_option "conservative", :type => :boolean, :banner =>
|
304
|
-
"Use bundle install conservative update behavior and do not allow shared dependencies to be updated."
|
305
|
-
method_option "all", :type => :boolean, :banner =>
|
306
|
-
"Update everything."
|
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."
|
307
273
|
def update(*gems)
|
308
274
|
SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force")
|
309
275
|
require_relative "cli/update"
|
310
|
-
Bundler.settings.temporary(:
|
276
|
+
Bundler.settings.temporary(no_install: false) do
|
311
277
|
Update.new(options, gems).run
|
312
278
|
end
|
313
279
|
end
|
@@ -317,21 +283,25 @@ module Bundler
|
|
317
283
|
Show lists the names and versions of all gems that are required by your Gemfile.
|
318
284
|
Calling show with [GEM] will list the exact location of that gem on your machine.
|
319
285
|
D
|
320
|
-
method_option "paths", :
|
321
|
-
:
|
322
|
-
method_option "outdated", :
|
323
|
-
:
|
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."
|
324
290
|
def show(gem_name = nil)
|
325
|
-
|
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
|
326
296
|
require_relative "cli/show"
|
327
297
|
Show.new(options, gem_name).run
|
328
298
|
end
|
329
299
|
|
330
300
|
desc "list", "List all gems in the bundle"
|
331
|
-
method_option "name-only", :
|
332
|
-
method_option "only-group", :
|
333
|
-
method_option "without-group", :
|
334
|
-
method_option "paths", :
|
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"
|
335
305
|
def list
|
336
306
|
require_relative "cli/list"
|
337
307
|
List.new(options).run
|
@@ -340,8 +310,8 @@ module Bundler
|
|
340
310
|
map aliases_for("list")
|
341
311
|
|
342
312
|
desc "info GEM [OPTIONS]", "Show information for the given gem"
|
343
|
-
method_option "path", :
|
344
|
-
method_option "version", :
|
313
|
+
method_option "path", type: :boolean, banner: "Print full path to gem"
|
314
|
+
method_option "version", type: :boolean, banner: "Print gem version"
|
345
315
|
def info(gem_name)
|
346
316
|
require_relative "cli/info"
|
347
317
|
Info.new(options, gem_name).run
|
@@ -353,18 +323,12 @@ module Bundler
|
|
353
323
|
or the --binstubs directory if one has been set. Calling binstubs with [GEM [GEM]]
|
354
324
|
will create binstubs for all given gems.
|
355
325
|
D
|
356
|
-
method_option "force", :
|
357
|
-
|
358
|
-
method_option "
|
359
|
-
|
360
|
-
method_option "
|
361
|
-
|
362
|
-
method_option "standalone", :type => :boolean, :banner =>
|
363
|
-
"Make binstubs that can work without the Bundler runtime"
|
364
|
-
method_option "all", :type => :boolean, :banner =>
|
365
|
-
"Install binstubs for all gems"
|
366
|
-
method_option "all-platforms", :type => :boolean, :default => false, :banner =>
|
367
|
-
"Install binstubs for all platforms"
|
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"
|
368
332
|
def binstubs(*gems)
|
369
333
|
require_relative "cli/binstubs"
|
370
334
|
Binstubs.new(options, gems).run
|
@@ -374,19 +338,18 @@ module Bundler
|
|
374
338
|
long_desc <<-D
|
375
339
|
Adds the specified gem to Gemfile (if valid) and run 'bundle install' in one step.
|
376
340
|
D
|
377
|
-
method_option "version", :
|
378
|
-
method_option "group", :
|
379
|
-
method_option "source", :
|
380
|
-
method_option "require", :
|
381
|
-
method_option "path", :
|
382
|
-
method_option "git", :
|
383
|
-
method_option "github", :
|
384
|
-
method_option "branch", :
|
385
|
-
method_option "ref", :
|
386
|
-
method_option "skip-install", :
|
387
|
-
|
388
|
-
method_option "
|
389
|
-
method_option "strict", :type => :boolean, :banner => "Adds strict declaration of version to gem"
|
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"
|
390
353
|
def add(*gems)
|
391
354
|
require_relative "cli/add"
|
392
355
|
Add.new(options.dup, gems).run
|
@@ -402,54 +365,45 @@ module Bundler
|
|
402
365
|
For more information on patch level options (--major, --minor, --patch,
|
403
366
|
--strict) see documentation on the same options on the update command.
|
404
367
|
D
|
405
|
-
method_option "group", :
|
406
|
-
method_option "groups", :
|
407
|
-
method_option "local", :
|
408
|
-
|
409
|
-
method_option "
|
410
|
-
method_option "
|
411
|
-
method_option "
|
412
|
-
|
413
|
-
method_option "
|
414
|
-
|
415
|
-
method_option "
|
416
|
-
method_option "
|
417
|
-
method_option "patch", :
|
418
|
-
method_option "
|
419
|
-
method_option "
|
420
|
-
method_option "filter-patch", :type => :boolean, :banner => "Only list patch newer versions"
|
421
|
-
method_option "parseable", :aliases => "--porcelain", :type => :boolean, :banner =>
|
422
|
-
"Use minimal formatting for more parseable output"
|
423
|
-
method_option "only-explicit", :type => :boolean, :banner =>
|
424
|
-
"Only list gems specified in your Gemfile, not their dependencies"
|
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"
|
425
383
|
def outdated(*gems)
|
426
384
|
require_relative "cli/outdated"
|
427
385
|
Outdated.new(options, gems).run
|
428
386
|
end
|
429
387
|
|
430
388
|
desc "fund [OPTIONS]", "Lists information about gems seeking funding assistance"
|
431
|
-
method_option "group", :
|
432
|
-
"Fetch funding information for a specific group"
|
389
|
+
method_option "group", aliases: "-g", type: :array, banner: "Fetch funding information for a specific group"
|
433
390
|
def fund
|
434
391
|
require_relative "cli/fund"
|
435
392
|
Fund.new(options).run
|
436
393
|
end
|
437
394
|
|
438
395
|
desc "cache [OPTIONS]", "Locks and then caches all of the gems into vendor/cache"
|
439
|
-
method_option "all", :
|
440
|
-
:
|
441
|
-
:
|
442
|
-
method_option "all-platforms", :
|
443
|
-
method_option "cache-path", :
|
444
|
-
|
445
|
-
method_option "
|
446
|
-
method_option "no-
|
447
|
-
method_option "
|
448
|
-
method_option "
|
449
|
-
|
450
|
-
method_option "quiet", :type => :boolean, :banner => "Only output warnings and errors."
|
451
|
-
method_option "frozen", :type => :boolean, :banner =>
|
452
|
-
"Do not allow the Gemfile.lock to be updated after this bundle cache operation's install"
|
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"
|
453
407
|
long_desc <<-D
|
454
408
|
The cache command will copy the .gem files for every gem in the bundle into the
|
455
409
|
directory ./vendor/cache. If you then check that directory into your source
|
@@ -457,17 +411,20 @@ module Bundler
|
|
457
411
|
bundle without having to download any additional gems.
|
458
412
|
D
|
459
413
|
def cache
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
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
|
471
428
|
|
472
429
|
require_relative "cli/cache"
|
473
430
|
Cache.new(options).run
|
@@ -476,8 +433,8 @@ module Bundler
|
|
476
433
|
map aliases_for("cache")
|
477
434
|
|
478
435
|
desc "exec [OPTIONS]", "Run the command in context of the bundle"
|
479
|
-
method_option :keep_file_descriptors, :
|
480
|
-
method_option :gemfile, :
|
436
|
+
method_option :keep_file_descriptors, type: :boolean, default: true
|
437
|
+
method_option :gemfile, type: :string, required: false
|
481
438
|
long_desc <<-D
|
482
439
|
Exec runs a command, providing it access to the gems in the bundle. While using
|
483
440
|
bundle exec you can require and call the bundled gems as if they were installed
|
@@ -485,7 +442,9 @@ module Bundler
|
|
485
442
|
D
|
486
443
|
def exec(*args)
|
487
444
|
if ARGV.include?("--no-keep-file-descriptors")
|
488
|
-
|
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)
|
489
448
|
end
|
490
449
|
|
491
450
|
require_relative "cli/exec"
|
@@ -510,7 +469,7 @@ module Bundler
|
|
510
469
|
subcommand "config", Config
|
511
470
|
|
512
471
|
desc "open GEM", "Opens the source directory of the given bundled gem"
|
513
|
-
method_option "path", :
|
472
|
+
method_option "path", type: :string, lazy_default: "", banner: "Open relative path of the gem source."
|
514
473
|
def open(name)
|
515
474
|
require_relative "cli/open"
|
516
475
|
Open.new(options, name).run
|
@@ -555,17 +514,17 @@ module Bundler
|
|
555
514
|
end
|
556
515
|
|
557
516
|
unless Bundler.feature_flag.bundler_3_mode?
|
558
|
-
desc "viz [OPTIONS]", "Generates a visual dependency graph", :
|
517
|
+
desc "viz [OPTIONS]", "Generates a visual dependency graph", hide: true
|
559
518
|
long_desc <<-D
|
560
519
|
Viz generates a PNG file of the current Gemfile as a dependency graph.
|
561
520
|
Viz requires the ruby-graphviz gem (and its dependencies).
|
562
521
|
The associated gems must also be installed via 'bundle install'.
|
563
522
|
D
|
564
|
-
method_option :file, :
|
565
|
-
method_option :format, :
|
566
|
-
method_option :requirements, :
|
567
|
-
method_option :version, :
|
568
|
-
method_option :without, :
|
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."
|
569
528
|
def viz
|
570
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"
|
571
530
|
require_relative "cli/viz"
|
@@ -576,23 +535,23 @@ module Bundler
|
|
576
535
|
old_gem = instance_method(:gem)
|
577
536
|
|
578
537
|
desc "gem NAME [OPTIONS]", "Creates a skeleton for creating a rubygem"
|
579
|
-
method_option :exe, :
|
580
|
-
method_option :coc, :
|
581
|
-
method_option :edit, :
|
582
|
-
:
|
583
|
-
:
|
584
|
-
method_option :ext, :
|
585
|
-
method_option :git, :
|
586
|
-
method_option :mit, :
|
587
|
-
method_option :rubocop, :
|
588
|
-
method_option :changelog, :
|
589
|
-
method_option :test, :
|
590
|
-
:
|
591
|
-
method_option :ci, :
|
592
|
-
:
|
593
|
-
method_option :linter, :
|
594
|
-
:
|
595
|
-
method_option :github_username, :
|
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>`."
|
596
555
|
|
597
556
|
def gem(name)
|
598
557
|
end
|
@@ -623,29 +582,24 @@ module Bundler
|
|
623
582
|
File.expand_path("templates", __dir__)
|
624
583
|
end
|
625
584
|
|
626
|
-
desc "clean [OPTIONS]", "Cleans up unused gems in your bundler directory", :
|
627
|
-
method_option "dry-run", :
|
628
|
-
|
629
|
-
method_option "force", :type => :boolean, :default => false, :banner =>
|
630
|
-
"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."
|
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."
|
631
588
|
def clean
|
632
589
|
require_relative "cli/clean"
|
633
590
|
Clean.new(options.dup).run
|
634
591
|
end
|
635
592
|
|
636
593
|
desc "platform [OPTIONS]", "Displays platform compatibility information"
|
637
|
-
method_option "ruby", :
|
638
|
-
"only display ruby related platform information"
|
594
|
+
method_option "ruby", type: :boolean, default: false, banner: "only display ruby related platform information"
|
639
595
|
def platform
|
640
596
|
require_relative "cli/platform"
|
641
597
|
Platform.new(options).run
|
642
598
|
end
|
643
599
|
|
644
|
-
desc "inject GEM VERSION", "Add the named gem, with version requirements, to the resolved Gemfile", :
|
645
|
-
method_option "source", :
|
646
|
-
|
647
|
-
method_option "group", :type => :string, :banner =>
|
648
|
-
"Install gem into a bundler group"
|
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"
|
649
603
|
def inject(name, version)
|
650
604
|
SharedHelpers.major_deprecation 2, "The `inject` command has been replaced by the `add` command"
|
651
605
|
require_relative "cli/inject"
|
@@ -653,36 +607,21 @@ module Bundler
|
|
653
607
|
end
|
654
608
|
|
655
609
|
desc "lock", "Creates a lockfile without installing"
|
656
|
-
method_option "update", :
|
657
|
-
|
658
|
-
method_option "
|
659
|
-
|
660
|
-
method_option "
|
661
|
-
|
662
|
-
method_option "
|
663
|
-
|
664
|
-
method_option "
|
665
|
-
|
666
|
-
method_option "
|
667
|
-
|
668
|
-
method_option "
|
669
|
-
|
670
|
-
method_option "
|
671
|
-
"Remove a platform from the lockfile"
|
672
|
-
method_option "patch", :type => :boolean, :banner =>
|
673
|
-
"If updating, prefer updating only to next patch version"
|
674
|
-
method_option "minor", :type => :boolean, :banner =>
|
675
|
-
"If updating, prefer updating only to next minor version"
|
676
|
-
method_option "major", :type => :boolean, :banner =>
|
677
|
-
"If updating, prefer updating to next major version (default)"
|
678
|
-
method_option "pre", :type => :boolean, :banner =>
|
679
|
-
"If updating, always choose the highest allowed version, regardless of prerelease status"
|
680
|
-
method_option "strict", :type => :boolean, :banner =>
|
681
|
-
"If updating, do not allow any gem to be updated past latest --patch | --minor | --major"
|
682
|
-
method_option "conservative", :type => :boolean, :banner =>
|
683
|
-
"If updating, use bundle install conservative update behavior and do not allow shared dependencies to be updated"
|
684
|
-
method_option "bundler", :type => :string, :lazy_default => "> 0.a", :banner =>
|
685
|
-
"Update the locked version of bundler"
|
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"
|
686
625
|
def lock
|
687
626
|
require_relative "cli/lock"
|
688
627
|
Lock.new(options).run
|
@@ -699,10 +638,8 @@ module Bundler
|
|
699
638
|
missing dependencies are detected, Bundler prints them and exits status 1.
|
700
639
|
Otherwise, Bundler prints a success message and exits with a status of 0.
|
701
640
|
D
|
702
|
-
method_option "gemfile", :
|
703
|
-
|
704
|
-
method_option "quiet", :type => :boolean, :banner =>
|
705
|
-
"Only output warnings and errors."
|
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."
|
706
643
|
def doctor
|
707
644
|
require_relative "cli/doctor"
|
708
645
|
Doctor.new(options).run
|
@@ -722,7 +659,9 @@ module Bundler
|
|
722
659
|
D
|
723
660
|
def pristine(*gems)
|
724
661
|
require_relative "cli/pristine"
|
725
|
-
|
662
|
+
Bundler.settings.temporary(no_install: false) do
|
663
|
+
Pristine.new(gems).run
|
664
|
+
end
|
726
665
|
end
|
727
666
|
|
728
667
|
if Bundler.feature_flag.plugins?
|
@@ -764,14 +703,16 @@ module Bundler
|
|
764
703
|
# when deprecated version of `--ext` is called
|
765
704
|
# print out deprecation warning and pretend `--ext=c` was provided
|
766
705
|
if deprecated_ext_value?(arguments)
|
767
|
-
|
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
|
768
709
|
arguments[arguments.index("--ext")] = "--ext=c"
|
769
710
|
end
|
770
711
|
end
|
771
712
|
|
772
713
|
def self.deprecated_ext_value?(arguments)
|
773
714
|
index = arguments.index("--ext")
|
774
|
-
next_argument = arguments[index+1]
|
715
|
+
next_argument = arguments[index + 1]
|
775
716
|
|
776
717
|
# it is ok when --ext is followed with valid extension value
|
777
718
|
# for example `bundle gem hello --ext c`
|
@@ -806,7 +747,7 @@ module Bundler
|
|
806
747
|
|
807
748
|
begin
|
808
749
|
Bundler.definition.specs
|
809
|
-
rescue GemNotFound
|
750
|
+
rescue GemNotFound, GitError
|
810
751
|
Bundler.ui.info "Automatically installing missing gems."
|
811
752
|
Bundler.reset!
|
812
753
|
invoke :install, []
|
@@ -844,7 +785,7 @@ module Bundler
|
|
844
785
|
return unless SharedHelpers.md5_available?
|
845
786
|
|
846
787
|
latest = Fetcher::CompactIndex.
|
847
|
-
new(nil, Source::Rubygems::Remote.new(Bundler::URI("https://rubygems.org")), nil).
|
788
|
+
new(nil, Source::Rubygems::Remote.new(Bundler::URI("https://rubygems.org")), nil, nil).
|
848
789
|
send(:compact_index_client).
|
849
790
|
instance_variable_get(:@cache).
|
850
791
|
dependencies("bundler").
|
@@ -883,12 +824,23 @@ module Bundler
|
|
883
824
|
|
884
825
|
value = options[name]
|
885
826
|
value = value.join(" ").to_s if option.type == :array
|
827
|
+
value = "'#{value}'" unless option.type == :boolean
|
886
828
|
|
887
|
-
|
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 =
|
888
834
|
"The `#{flag_name}` flag is deprecated because it relies on being " \
|
889
835
|
"remembered across bundler invocations, which bundler will no longer " \
|
890
|
-
"do in future versions. Instead please use `bundle config set
|
891
|
-
"
|
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
|
892
844
|
end
|
893
845
|
end
|
894
846
|
end
|