bundler 2.2.27 → 2.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1328 -4
- data/README.md +4 -8
- data/bundler.gemspec +11 -11
- data/exe/bundle +5 -26
- data/exe/bundler +1 -1
- data/lib/bundler/.document +1 -0
- data/lib/bundler/build_metadata.rb +4 -4
- data/lib/bundler/capistrano.rb +1 -1
- data/lib/bundler/checksum.rb +254 -0
- data/lib/bundler/ci_detector.rb +75 -0
- data/lib/bundler/cli/add.rb +7 -5
- data/lib/bundler/cli/binstubs.rb +10 -6
- data/lib/bundler/cli/cache.rb +1 -1
- data/lib/bundler/cli/check.rb +4 -4
- data/lib/bundler/cli/common.rb +13 -3
- data/lib/bundler/cli/config.rb +18 -8
- data/lib/bundler/cli/console.rb +2 -5
- data/lib/bundler/cli/doctor.rb +16 -9
- data/lib/bundler/cli/exec.rb +2 -1
- data/lib/bundler/cli/fund.rb +1 -1
- data/lib/bundler/cli/gem.rb +153 -40
- data/lib/bundler/cli/info.rb +27 -17
- data/lib/bundler/cli/init.rb +6 -2
- data/lib/bundler/cli/inject.rb +1 -1
- data/lib/bundler/cli/install.rb +34 -42
- data/lib/bundler/cli/issue.rb +5 -4
- data/lib/bundler/cli/lock.rb +54 -28
- data/lib/bundler/cli/open.rb +9 -9
- data/lib/bundler/cli/outdated.rb +34 -29
- data/lib/bundler/cli/platform.rb +8 -6
- data/lib/bundler/cli/plugin.rb +9 -15
- data/lib/bundler/cli/pristine.rb +38 -30
- data/lib/bundler/cli/remove.rb +1 -2
- data/lib/bundler/cli/show.rb +5 -5
- data/lib/bundler/cli/update.rb +12 -7
- data/lib/bundler/cli/viz.rb +1 -1
- data/lib/bundler/cli.rb +265 -313
- data/lib/bundler/compact_index_client/cache.rb +53 -67
- data/lib/bundler/compact_index_client/cache_file.rb +148 -0
- data/lib/bundler/compact_index_client/gem_parser.rb +7 -3
- data/lib/bundler/compact_index_client/parser.rb +84 -0
- data/lib/bundler/compact_index_client/updater.rb +73 -77
- data/lib/bundler/compact_index_client.rb +59 -87
- data/lib/bundler/constants.rb +9 -2
- data/lib/bundler/current_ruby.rb +12 -16
- data/lib/bundler/definition.rb +604 -347
- data/lib/bundler/dependency.rb +33 -71
- data/lib/bundler/digest.rb +71 -0
- data/lib/bundler/dsl.rb +136 -102
- data/lib/bundler/endpoint_specification.rb +42 -16
- data/lib/bundler/env.rb +5 -7
- data/lib/bundler/environment_preserver.rb +8 -22
- data/lib/bundler/errors.rb +113 -13
- data/lib/bundler/feature_flag.rb +1 -2
- data/lib/bundler/fetcher/base.rb +11 -11
- data/lib/bundler/fetcher/compact_index.rb +32 -52
- data/lib/bundler/fetcher/dependency.rb +3 -7
- data/lib/bundler/fetcher/downloader.rb +17 -16
- data/lib/bundler/fetcher/gem_remote_fetcher.rb +16 -0
- data/lib/bundler/fetcher/index.rb +2 -29
- data/lib/bundler/fetcher.rb +98 -83
- data/lib/bundler/force_platform.rb +16 -0
- data/lib/bundler/friendly_errors.rb +29 -40
- data/lib/bundler/gem_helper.rb +12 -24
- data/lib/bundler/gem_helpers.rb +47 -7
- data/lib/bundler/gem_version_promoter.rb +68 -109
- data/lib/bundler/graph.rb +9 -9
- data/lib/bundler/index.rb +71 -79
- data/lib/bundler/injector.rb +25 -13
- data/lib/bundler/inline.rb +41 -28
- data/lib/bundler/installer/gem_installer.rb +22 -13
- data/lib/bundler/installer/parallel_installer.rb +19 -66
- data/lib/bundler/installer/standalone.rb +58 -17
- data/lib/bundler/installer.rb +31 -93
- data/lib/bundler/lazy_specification.rb +151 -72
- data/lib/bundler/lockfile_generator.rb +13 -4
- data/lib/bundler/lockfile_parser.rb +146 -71
- data/lib/bundler/man/bundle-add.1 +54 -44
- data/lib/bundler/man/bundle-add.1.ronn +62 -21
- data/lib/bundler/man/bundle-binstubs.1 +10 -19
- data/lib/bundler/man/bundle-binstubs.1.ronn +6 -3
- data/lib/bundler/man/bundle-cache.1 +38 -25
- data/lib/bundler/man/bundle-cache.1.ronn +40 -4
- data/lib/bundler/man/bundle-check.1 +7 -14
- data/lib/bundler/man/bundle-check.1.ronn +7 -2
- data/lib/bundler/man/bundle-clean.1 +4 -11
- data/lib/bundler/man/bundle-clean.1.ronn +1 -1
- data/lib/bundler/man/bundle-config.1 +48 -227
- data/lib/bundler/man/bundle-config.1.ronn +41 -34
- data/lib/bundler/man/bundle-console.1 +33 -0
- data/lib/bundler/man/bundle-console.1.ronn +39 -0
- data/lib/bundler/man/bundle-doctor.1 +5 -19
- data/lib/bundler/man/bundle-doctor.1.ronn +1 -1
- data/lib/bundler/man/bundle-env.1 +9 -0
- data/lib/bundler/man/bundle-env.1.ronn +10 -0
- data/lib/bundler/man/bundle-exec.1 +20 -78
- data/lib/bundler/man/bundle-exec.1.ronn +12 -10
- data/lib/bundler/man/bundle-fund.1 +22 -0
- data/lib/bundler/man/bundle-fund.1.ronn +25 -0
- data/lib/bundler/man/bundle-gem.1 +57 -72
- data/lib/bundler/man/bundle-gem.1.ronn +57 -9
- data/lib/bundler/man/bundle-help.1 +9 -0
- data/lib/bundler/man/bundle-help.1.ronn +12 -0
- data/lib/bundler/man/bundle-info.1 +8 -11
- data/lib/bundler/man/bundle-info.1.ronn +9 -5
- data/lib/bundler/man/bundle-init.1 +7 -12
- data/lib/bundler/man/bundle-init.1.ronn +4 -1
- data/lib/bundler/man/bundle-inject.1 +17 -19
- data/lib/bundler/man/bundle-inject.1.ronn +12 -2
- data/lib/bundler/man/bundle-install.1 +43 -163
- data/lib/bundler/man/bundle-install.1.ronn +33 -51
- data/lib/bundler/man/bundle-issue.1 +45 -0
- data/lib/bundler/man/bundle-issue.1.ronn +37 -0
- data/lib/bundler/man/bundle-licenses.1 +9 -0
- data/lib/bundler/man/bundle-licenses.1.ronn +10 -0
- data/lib/bundler/man/bundle-list.1 +4 -19
- data/lib/bundler/man/bundle-list.1.ronn +4 -1
- data/lib/bundler/man/bundle-lock.1 +25 -34
- data/lib/bundler/man/bundle-lock.1.ronn +25 -4
- data/lib/bundler/man/bundle-open.1 +18 -18
- data/lib/bundler/man/bundle-open.1.ronn +10 -1
- data/lib/bundler/man/bundle-outdated.1 +23 -75
- data/lib/bundler/man/bundle-outdated.1.ronn +21 -22
- data/lib/bundler/man/bundle-platform.1 +16 -28
- data/lib/bundler/man/bundle-platform.1.ronn +14 -7
- data/lib/bundler/man/bundle-plugin.1 +58 -0
- data/lib/bundler/man/bundle-plugin.1.ronn +63 -0
- data/lib/bundler/man/bundle-pristine.1 +5 -16
- data/lib/bundler/man/bundle-pristine.1.ronn +1 -1
- data/lib/bundler/man/bundle-remove.1 +4 -14
- data/lib/bundler/man/bundle-remove.1.ronn +1 -1
- data/lib/bundler/man/bundle-show.1 +7 -11
- data/lib/bundler/man/bundle-show.1.ronn +4 -0
- data/lib/bundler/man/bundle-update.1 +31 -144
- data/lib/bundler/man/bundle-update.1.ronn +16 -7
- data/lib/bundler/man/bundle-version.1 +22 -0
- data/lib/bundler/man/bundle-version.1.ronn +24 -0
- data/lib/bundler/man/bundle-viz.1 +9 -18
- data/lib/bundler/man/bundle-viz.1.ronn +9 -3
- data/lib/bundler/man/bundle.1 +17 -51
- data/lib/bundler/man/bundle.1.ronn +12 -7
- data/lib/bundler/man/gemfile.5 +132 -346
- data/lib/bundler/man/gemfile.5.ronn +127 -86
- data/lib/bundler/man/index.txt +8 -0
- data/lib/bundler/match_metadata.rb +17 -0
- data/lib/bundler/match_platform.rb +1 -2
- data/lib/bundler/match_remote_metadata.rb +29 -0
- data/lib/bundler/materialization.rb +59 -0
- data/lib/bundler/mirror.rb +8 -10
- data/lib/bundler/plugin/api/source.rb +11 -14
- data/lib/bundler/plugin/events.rb +24 -0
- data/lib/bundler/plugin/index.rb +13 -5
- data/lib/bundler/plugin/installer/git.rb +0 -4
- data/lib/bundler/plugin/installer/path.rb +18 -0
- data/lib/bundler/plugin/installer/rubygems.rb +0 -8
- data/lib/bundler/plugin/installer.rb +43 -20
- data/lib/bundler/plugin/source_list.rb +4 -4
- data/lib/bundler/plugin.rb +35 -7
- data/lib/bundler/process_lock.rb +10 -14
- data/lib/bundler/remote_specification.rb +17 -6
- data/lib/bundler/resolver/base.rb +117 -0
- data/lib/bundler/resolver/candidate.rb +82 -0
- data/lib/bundler/resolver/incompatibility.rb +15 -0
- data/lib/bundler/resolver/package.rb +90 -0
- data/lib/bundler/resolver/root.rb +25 -0
- data/lib/bundler/resolver/spec_group.rb +54 -66
- data/lib/bundler/resolver.rb +440 -306
- data/lib/bundler/retry.rb +2 -2
- data/lib/bundler/ruby_dsl.rb +42 -7
- data/lib/bundler/ruby_version.rb +22 -22
- data/lib/bundler/rubygems_ext.rb +323 -84
- data/lib/bundler/rubygems_gem_installer.rb +93 -65
- data/lib/bundler/rubygems_integration.rb +89 -237
- data/lib/bundler/runtime.rb +30 -20
- data/lib/bundler/safe_marshal.rb +31 -0
- data/lib/bundler/self_manager.rb +205 -0
- data/lib/bundler/settings.rb +145 -58
- data/lib/bundler/setup.rb +13 -1
- data/lib/bundler/shared_helpers.rb +94 -51
- data/lib/bundler/source/git/git_proxy.rb +283 -82
- data/lib/bundler/source/git.rb +187 -78
- data/lib/bundler/source/metadata.rb +16 -16
- data/lib/bundler/source/path/installer.rb +1 -22
- data/lib/bundler/source/path.rb +17 -27
- data/lib/bundler/source/rubygems/remote.rb +1 -1
- data/lib/bundler/source/rubygems.rb +165 -245
- data/lib/bundler/source/rubygems_aggregate.rb +1 -1
- data/lib/bundler/source.rb +7 -6
- data/lib/bundler/source_list.rb +41 -33
- data/lib/bundler/source_map.rb +15 -2
- data/lib/bundler/spec_set.rb +193 -58
- data/lib/bundler/stub_specification.rb +39 -7
- data/lib/bundler/templates/Executable +3 -5
- data/lib/bundler/templates/Executable.bundler +7 -12
- data/lib/bundler/templates/Executable.standalone +4 -4
- data/lib/bundler/templates/Gemfile +0 -2
- data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +77 -29
- data/lib/bundler/templates/newgem/Cargo.toml.tt +7 -0
- data/lib/bundler/templates/newgem/Gemfile.tt +5 -2
- data/lib/bundler/templates/newgem/README.md.tt +12 -12
- data/lib/bundler/templates/newgem/Rakefile.tt +28 -4
- data/lib/bundler/templates/newgem/bin/console.tt +0 -4
- data/lib/bundler/templates/newgem/circleci/config.yml.tt +12 -0
- data/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +15 -0
- data/lib/bundler/templates/newgem/ext/newgem/extconf-c.rb.tt +10 -0
- data/lib/bundler/templates/newgem/ext/newgem/extconf-rust.rb.tt +6 -0
- data/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +1 -1
- data/lib/bundler/templates/newgem/ext/newgem/src/lib.rs.tt +12 -0
- data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +20 -10
- data/lib/bundler/templates/newgem/gitignore.tt +3 -0
- data/lib/bundler/templates/newgem/gitlab-ci.yml.tt +13 -4
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +26 -18
- data/lib/bundler/templates/newgem/rubocop.yml.tt +0 -5
- data/lib/bundler/templates/newgem/sig/newgem.rbs.tt +8 -0
- data/lib/bundler/templates/newgem/standard.yml.tt +3 -0
- data/lib/bundler/templates/newgem/test/minitest/{newgem_test.rb.tt → test_newgem.rb.tt} +1 -1
- data/lib/bundler/ui/rg_proxy.rb +1 -1
- data/lib/bundler/ui/shell.rb +61 -16
- data/lib/bundler/ui/silent.rb +33 -6
- data/lib/bundler/uri_credentials_filter.rb +3 -3
- data/lib/bundler/uri_normalizer.rb +23 -0
- data/lib/bundler/vendor/.document +1 -0
- data/lib/bundler/vendor/connection_pool/.document +1 -0
- data/lib/bundler/vendor/connection_pool/LICENSE +20 -0
- data/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +19 -21
- data/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +1 -1
- data/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb +56 -0
- data/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +92 -78
- data/lib/bundler/vendor/fileutils/.document +1 -0
- data/lib/bundler/vendor/fileutils/COPYING +56 -0
- data/lib/bundler/vendor/fileutils/lib/fileutils.rb +1350 -418
- data/lib/bundler/vendor/net-http-persistent/.document +1 -0
- data/lib/bundler/vendor/net-http-persistent/README.rdoc +82 -0
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +4 -3
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +23 -11
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +1 -1
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +102 -64
- data/lib/bundler/vendor/pub_grub/.document +1 -0
- data/lib/bundler/vendor/pub_grub/LICENSE.txt +21 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/assignment.rb +20 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/basic_package_source.rb +189 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/failure_writer.rb +182 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/incompatibility.rb +150 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/package.rb +43 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/partial_solution.rb +121 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/rubygems.rb +45 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/solve_failure.rb +19 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb +61 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/term.rb +105 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/version.rb +3 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/version_constraint.rb +129 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb +411 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb +248 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub/version_union.rb +178 -0
- data/lib/bundler/vendor/pub_grub/lib/pub_grub.rb +31 -0
- data/lib/bundler/vendor/securerandom/.document +1 -0
- data/lib/bundler/vendor/securerandom/COPYING +56 -0
- data/lib/bundler/vendor/securerandom/lib/securerandom.rb +102 -0
- data/lib/bundler/vendor/thor/.document +1 -0
- data/lib/bundler/vendor/thor/LICENSE.md +20 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +3 -2
- data/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +15 -19
- data/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +16 -6
- data/lib/bundler/vendor/thor/lib/thor/actions.rb +21 -17
- data/lib/bundler/vendor/thor/lib/thor/base.rb +140 -14
- data/lib/bundler/vendor/thor/lib/thor/command.rb +13 -4
- data/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +10 -0
- data/lib/bundler/vendor/thor/lib/thor/error.rb +16 -20
- data/lib/bundler/vendor/thor/lib/thor/group.rb +12 -1
- data/lib/bundler/vendor/thor/lib/thor/invocation.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor/nested_context.rb +2 -2
- data/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +17 -1
- data/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +33 -17
- data/lib/bundler/vendor/thor/lib/thor/parser/option.rb +28 -9
- data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +65 -8
- data/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +2 -2
- data/lib/bundler/vendor/thor/lib/thor/runner.rb +40 -30
- data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +56 -162
- data/lib/bundler/vendor/thor/lib/thor/shell/color.rb +1 -46
- data/lib/bundler/vendor/thor/lib/thor/shell/column_printer.rb +29 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/html.rb +1 -46
- data/lib/bundler/vendor/thor/lib/thor/shell/table_printer.rb +118 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/terminal.rb +42 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/wrapped_printer.rb +38 -0
- data/lib/bundler/vendor/thor/lib/thor/shell.rb +2 -2
- data/lib/bundler/vendor/thor/lib/thor/util.rb +9 -8
- data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/lib/bundler/vendor/thor/lib/thor.rb +166 -8
- data/lib/bundler/vendor/tsort/.document +1 -0
- data/lib/bundler/vendor/tsort/LICENSE.txt +22 -0
- data/lib/bundler/vendor/tsort/lib/tsort.rb +455 -0
- data/lib/bundler/vendor/uri/.document +1 -0
- data/lib/bundler/vendor/uri/COPYING +56 -0
- data/lib/bundler/vendor/uri/lib/uri/common.rb +351 -219
- data/lib/bundler/vendor/uri/lib/uri/file.rb +10 -4
- data/lib/bundler/vendor/uri/lib/uri/ftp.rb +3 -3
- data/lib/bundler/vendor/uri/lib/uri/generic.rb +49 -39
- data/lib/bundler/vendor/uri/lib/uri/http.rb +40 -3
- data/lib/bundler/vendor/uri/lib/uri/https.rb +2 -2
- data/lib/bundler/vendor/uri/lib/uri/ldap.rb +2 -2
- data/lib/bundler/vendor/uri/lib/uri/ldaps.rb +2 -1
- data/lib/bundler/vendor/uri/lib/uri/mailto.rb +2 -3
- data/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +26 -26
- data/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +131 -50
- data/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
- data/lib/bundler/vendor/uri/lib/uri/ws.rb +83 -0
- data/lib/bundler/vendor/uri/lib/uri/wss.rb +23 -0
- data/lib/bundler/vendor/uri/lib/uri.rb +12 -12
- data/lib/bundler/vendored_net_http.rb +23 -0
- data/lib/bundler/vendored_persistent.rb +0 -36
- data/lib/bundler/{vendored_molinillo.rb → vendored_pub_grub.rb} +1 -1
- data/lib/bundler/vendored_securerandom.rb +12 -0
- data/lib/bundler/vendored_timeout.rb +12 -0
- data/lib/bundler/{vendored_tmpdir.rb → vendored_tsort.rb} +1 -1
- data/lib/bundler/vendored_uri.rb +18 -1
- data/lib/bundler/version.rb +5 -1
- data/lib/bundler/vlad.rb +1 -1
- data/lib/bundler/worker.rb +7 -9
- data/lib/bundler/yaml_serializer.rb +22 -13
- data/lib/bundler.rb +176 -151
- metadata +98 -41
- data/lib/bundler/dep_proxy.rb +0 -55
- data/lib/bundler/gemdeps.rb +0 -29
- data/lib/bundler/psyched_yaml.rb +0 -22
- data/lib/bundler/templates/gems.rb +0 -8
- data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +0 -5
- data/lib/bundler/templates/newgem/travis.yml.tt +0 -6
- data/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb +0 -66
- data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +0 -57
- data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +0 -88
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +0 -36
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +0 -66
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +0 -62
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +0 -63
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +0 -61
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +0 -126
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +0 -46
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +0 -36
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +0 -164
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +0 -255
- data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +0 -143
- data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +0 -6
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +0 -112
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +0 -67
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +0 -839
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +0 -46
- data/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +0 -58
- data/lib/bundler/vendor/molinillo/lib/molinillo.rb +0 -11
- data/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +0 -154
- data/lib/bundler/version_ranges.rb +0 -122
data/lib/bundler/cli.rb
CHANGED
@@ -5,11 +5,13 @@ require_relative "vendored_thor"
|
|
5
5
|
module Bundler
|
6
6
|
class CLI < Thor
|
7
7
|
require_relative "cli/common"
|
8
|
+
require_relative "cli/install"
|
8
9
|
|
9
10
|
package_name "Bundler"
|
10
11
|
|
11
12
|
AUTO_INSTALL_CMDS = %w[show binstubs outdated exec open console licenses clean].freeze
|
12
13
|
PARSEABLE_COMMANDS = %w[check config help exec platform show version].freeze
|
14
|
+
EXTENSIONS = ["c", "rust"].freeze
|
13
15
|
|
14
16
|
COMMAND_ALIASES = {
|
15
17
|
"check" => "c",
|
@@ -22,6 +24,8 @@ module Bundler
|
|
22
24
|
}.freeze
|
23
25
|
|
24
26
|
def self.start(*)
|
27
|
+
check_deprecated_ext_option(ARGV) if ARGV.include?("--ext")
|
28
|
+
|
25
29
|
super
|
26
30
|
ensure
|
27
31
|
Bundler::SharedHelpers.print_major_deprecations!
|
@@ -61,10 +65,12 @@ module Bundler
|
|
61
65
|
Bundler.reset_settings_and_root!
|
62
66
|
end
|
63
67
|
|
68
|
+
Bundler.auto_switch
|
69
|
+
|
64
70
|
Bundler.settings.set_command_option_if_given :retry, options[:retry]
|
65
71
|
|
66
72
|
current_cmd = args.last[:current_command].name
|
67
|
-
auto_install if AUTO_INSTALL_CMDS.include?(current_cmd)
|
73
|
+
Bundler.auto_install if AUTO_INSTALL_CMDS.include?(current_cmd)
|
68
74
|
rescue UnknownArgumentError => e
|
69
75
|
raise InvalidOption, e.message
|
70
76
|
ensure
|
@@ -75,10 +81,10 @@ module Bundler
|
|
75
81
|
unprinted_warnings.each {|w| Bundler.ui.warn(w) }
|
76
82
|
end
|
77
83
|
|
78
|
-
check_unknown_options!(:
|
84
|
+
check_unknown_options!(except: [:config, :exec])
|
79
85
|
stop_on_unknown_option! :exec
|
80
86
|
|
81
|
-
desc "cli_help", "Prints a summary of bundler commands", :
|
87
|
+
desc "cli_help", "Prints a summary of bundler commands", hide: true
|
82
88
|
def cli_help
|
83
89
|
version
|
84
90
|
Bundler.ui.info "\n"
|
@@ -94,21 +100,23 @@ module Bundler
|
|
94
100
|
shell.say "Bundler commands:\n\n"
|
95
101
|
|
96
102
|
shell.say " Primary commands:\n"
|
97
|
-
shell.print_table(primary_commands, :
|
103
|
+
shell.print_table(primary_commands, indent: 4, truncate: true)
|
98
104
|
shell.say
|
99
105
|
shell.say " Utilities:\n"
|
100
|
-
shell.print_table(utilities, :
|
106
|
+
shell.print_table(utilities, indent: 4, truncate: true)
|
101
107
|
shell.say
|
102
108
|
self.class.send(:class_options_help, shell)
|
103
109
|
end
|
104
110
|
default_task(Bundler.feature_flag.default_cli_command)
|
105
111
|
|
106
|
-
class_option "no-color", :
|
107
|
-
class_option "retry",
|
108
|
-
|
109
|
-
class_option "verbose", :
|
112
|
+
class_option "no-color", type: :boolean, desc: "Disable colorization in output"
|
113
|
+
class_option "retry", type: :numeric, aliases: "-r", banner: "NUM",
|
114
|
+
desc: "Specify the number of times you wish to attempt network commands"
|
115
|
+
class_option "verbose", type: :boolean, desc: "Enable verbose output mode", aliases: "-V"
|
110
116
|
|
111
117
|
def help(cli = nil)
|
118
|
+
cli = self.class.all_aliases[cli] if self.class.all_aliases[cli]
|
119
|
+
|
112
120
|
case cli
|
113
121
|
when "gemfile" then command = "gemfile"
|
114
122
|
when nil then command = "bundle"
|
@@ -122,8 +130,8 @@ module Bundler
|
|
122
130
|
|
123
131
|
if man_pages.include?(command)
|
124
132
|
man_page = man_pages[command]
|
125
|
-
if Bundler.which("man") && man_path
|
126
|
-
Kernel.exec
|
133
|
+
if Bundler.which("man") && !man_path.match?(%r{^file:/.+!/META-INF/jruby.home/.+})
|
134
|
+
Kernel.exec("man", man_page)
|
127
135
|
else
|
128
136
|
puts File.read("#{man_path}/#{File.basename(man_page)}.ronn")
|
129
137
|
end
|
@@ -150,7 +158,8 @@ module Bundler
|
|
150
158
|
Gemfile to a gem with a gemspec, the --gemspec option will automatically add each
|
151
159
|
dependency listed in the gemspec file to the newly created Gemfile.
|
152
160
|
D
|
153
|
-
method_option "gemspec", :
|
161
|
+
method_option "gemspec", type: :string, banner: "Use the specified .gemspec to create the Gemfile"
|
162
|
+
method_option "gemfile", type: :string, banner: "Use the specified name for the gemfile instead of 'Gemfile'"
|
154
163
|
def init
|
155
164
|
require_relative "cli/init"
|
156
165
|
Init.new(options.dup).run
|
@@ -162,12 +171,9 @@ module Bundler
|
|
162
171
|
all gems are found, Bundler prints a success message and exits with a status of 0.
|
163
172
|
If not, the first missing gem is listed and Bundler exits status 1.
|
164
173
|
D
|
165
|
-
method_option "dry-run", :
|
166
|
-
|
167
|
-
method_option "
|
168
|
-
"Use the specified gemfile instead of Gemfile"
|
169
|
-
method_option "path", :type => :string, :banner =>
|
170
|
-
"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
|
+
method_option "dry-run", type: :boolean, default: false, banner: "Lock the Gemfile"
|
175
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
176
|
+
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?}"
|
171
177
|
def check
|
172
178
|
remembered_flag_deprecation("path")
|
173
179
|
|
@@ -181,9 +187,14 @@ module Bundler
|
|
181
187
|
long_desc <<-D
|
182
188
|
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.
|
183
189
|
D
|
184
|
-
method_option "install", :
|
185
|
-
"Runs 'bundle install' after removing the gems from the Gemfile"
|
190
|
+
method_option "install", type: :boolean, banner: "Runs 'bundle install' after removing the gems from the Gemfile"
|
186
191
|
def remove(*gems)
|
192
|
+
if ARGV.include?("--install")
|
193
|
+
message = "The `--install` flag has been deprecated. `bundle install` is triggered by default."
|
194
|
+
removed_message = "The `--install` flag has been removed. `bundle install` is triggered by default."
|
195
|
+
SharedHelpers.major_deprecation(2, message, removed_message: removed_message)
|
196
|
+
end
|
197
|
+
|
187
198
|
require_relative "cli/remove"
|
188
199
|
Remove.new(gems, options).run
|
189
200
|
end
|
@@ -199,56 +210,40 @@ module Bundler
|
|
199
210
|
|
200
211
|
If the bundle has already been installed, bundler will tell you so and then exit.
|
201
212
|
D
|
202
|
-
method_option "binstubs", :
|
203
|
-
|
204
|
-
method_option "
|
205
|
-
|
206
|
-
method_option "
|
207
|
-
|
208
|
-
method_option "
|
209
|
-
|
210
|
-
method_option "
|
211
|
-
|
212
|
-
method_option "
|
213
|
-
|
214
|
-
method_option "
|
215
|
-
|
216
|
-
method_option "
|
217
|
-
|
218
|
-
method_option "
|
219
|
-
|
220
|
-
method_option "
|
221
|
-
|
222
|
-
method_option "
|
223
|
-
"Don't remove stale gems from the cache."
|
224
|
-
method_option "path", :type => :string, :banner =>
|
225
|
-
"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?}"
|
226
|
-
method_option "quiet", :type => :boolean, :banner =>
|
227
|
-
"Only output warnings and errors."
|
228
|
-
method_option "shebang", :type => :string, :banner =>
|
229
|
-
"Specify a different shebang executable name than the default (usually 'ruby')"
|
230
|
-
method_option "standalone", :type => :array, :lazy_default => [], :banner =>
|
231
|
-
"Make a bundle that can work without the Bundler runtime"
|
232
|
-
method_option "system", :type => :boolean, :banner =>
|
233
|
-
"Install to the system location ($BUNDLE_PATH or $GEM_HOME) even if the bundle was previously installed somewhere else for this application"
|
234
|
-
method_option "trust-policy", :alias => "P", :type => :string, :banner =>
|
235
|
-
"Gem trust policy (like gem install -P). Must be one of " +
|
236
|
-
Bundler.rubygems.security_policy_keys.join("|")
|
237
|
-
method_option "without", :type => :array, :banner =>
|
238
|
-
"Exclude gems that are part of the specified named group."
|
239
|
-
method_option "with", :type => :array, :banner =>
|
240
|
-
"Include gems that are part of the specified named group."
|
213
|
+
method_option "binstubs", type: :string, lazy_default: "bin", banner: "Generate bin stubs for bundled gems to ./bin"
|
214
|
+
method_option "clean", type: :boolean, banner: "Run bundle clean automatically after install"
|
215
|
+
method_option "deployment", type: :boolean, banner: "Install using defaults tuned for deployment environments"
|
216
|
+
method_option "frozen", type: :boolean, banner: "Do not allow the Gemfile.lock to be updated after this install"
|
217
|
+
method_option "full-index", type: :boolean, banner: "Fall back to using the single-file index of all gems"
|
218
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
219
|
+
method_option "jobs", aliases: "-j", type: :numeric, banner: "Specify the number of jobs to run in parallel"
|
220
|
+
method_option "local", type: :boolean, banner: "Do not attempt to fetch gems remotely and use the gem cache instead"
|
221
|
+
method_option "prefer-local", type: :boolean, banner: "Only attempt to fetch gems remotely if not present locally, even if newer versions are available remotely"
|
222
|
+
method_option "no-cache", type: :boolean, banner: "Don't update the existing gem cache."
|
223
|
+
method_option "redownload", type: :boolean, aliases: "--force", banner: "Force downloading every gem."
|
224
|
+
method_option "no-prune", type: :boolean, banner: "Don't remove stale gems from the cache."
|
225
|
+
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?}"
|
226
|
+
method_option "quiet", type: :boolean, banner: "Only output warnings and errors."
|
227
|
+
method_option "shebang", type: :string, banner: "Specify a different shebang executable name than the default (usually 'ruby')"
|
228
|
+
method_option "standalone", type: :array, lazy_default: [], banner: "Make a bundle that can work without the Bundler runtime"
|
229
|
+
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"
|
230
|
+
method_option "trust-policy", alias: "P", type: :string, banner: "Gem trust policy (like gem install -P). Must be one of #{Bundler.rubygems.security_policy_keys.join("|")}"
|
231
|
+
method_option "target-rbconfig", type: :string, banner: "Path to rbconfig.rb for the deployment target platform"
|
232
|
+
method_option "without", type: :array, banner: "Exclude gems that are part of the specified named group."
|
233
|
+
method_option "with", type: :array, banner: "Include gems that are part of the specified named group."
|
241
234
|
def install
|
242
235
|
SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force")
|
243
236
|
|
244
|
-
%w[clean deployment frozen no-prune path shebang
|
237
|
+
%w[clean deployment frozen no-prune path shebang without with].each do |option|
|
245
238
|
remembered_flag_deprecation(option)
|
246
239
|
end
|
247
240
|
|
241
|
+
print_remembered_flag_deprecation("--system", "path.system", "true") if ARGV.include?("--system")
|
242
|
+
|
248
243
|
remembered_negative_flag_deprecation("no-deployment")
|
249
244
|
|
250
245
|
require_relative "cli/install"
|
251
|
-
Bundler.settings.temporary(:
|
246
|
+
Bundler.settings.temporary(no_install: false) do
|
252
247
|
Install.new(options.dup).run
|
253
248
|
end
|
254
249
|
end
|
@@ -261,42 +256,27 @@ module Bundler
|
|
261
256
|
update when you have changed the Gemfile, or if you want to get the newest
|
262
257
|
possible versions of the gems in the bundle.
|
263
258
|
D
|
264
|
-
method_option "full-index", :
|
265
|
-
|
266
|
-
method_option "
|
267
|
-
|
268
|
-
method_option "
|
269
|
-
|
270
|
-
method_option "
|
271
|
-
|
272
|
-
method_option "
|
273
|
-
|
274
|
-
method_option "
|
275
|
-
|
276
|
-
method_option "
|
277
|
-
|
278
|
-
method_option "
|
279
|
-
|
280
|
-
method_option "
|
281
|
-
"Update ruby specified in Gemfile.lock"
|
282
|
-
method_option "bundler", :type => :string, :lazy_default => "> 0.a", :banner =>
|
283
|
-
"Update the locked version of bundler"
|
284
|
-
method_option "patch", :type => :boolean, :banner =>
|
285
|
-
"Prefer updating only to next patch version"
|
286
|
-
method_option "minor", :type => :boolean, :banner =>
|
287
|
-
"Prefer updating only to next minor version"
|
288
|
-
method_option "major", :type => :boolean, :banner =>
|
289
|
-
"Prefer updating to next major version (default)"
|
290
|
-
method_option "strict", :type => :boolean, :banner =>
|
291
|
-
"Do not allow any gem to be updated past latest --patch | --minor | --major"
|
292
|
-
method_option "conservative", :type => :boolean, :banner =>
|
293
|
-
"Use bundle install conservative update behavior and do not allow shared dependencies to be updated."
|
294
|
-
method_option "all", :type => :boolean, :banner =>
|
295
|
-
"Update everything."
|
259
|
+
method_option "full-index", type: :boolean, banner: "Fall back to using the single-file index of all gems"
|
260
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
261
|
+
method_option "group", aliases: "-g", type: :array, banner: "Update a specific group"
|
262
|
+
method_option "jobs", aliases: "-j", type: :numeric, banner: "Specify the number of jobs to run in parallel"
|
263
|
+
method_option "local", type: :boolean, banner: "Do not attempt to fetch gems remotely and use the gem cache instead"
|
264
|
+
method_option "quiet", type: :boolean, banner: "Only output warnings and errors."
|
265
|
+
method_option "source", type: :array, banner: "Update a specific source (and all gems associated with it)"
|
266
|
+
method_option "redownload", type: :boolean, aliases: "--force", banner: "Force downloading every gem."
|
267
|
+
method_option "ruby", type: :boolean, banner: "Update ruby specified in Gemfile.lock"
|
268
|
+
method_option "bundler", type: :string, lazy_default: "> 0.a", banner: "Update the locked version of bundler"
|
269
|
+
method_option "patch", type: :boolean, banner: "Prefer updating only to next patch version"
|
270
|
+
method_option "minor", type: :boolean, banner: "Prefer updating only to next minor version"
|
271
|
+
method_option "major", type: :boolean, banner: "Prefer updating to next major version (default)"
|
272
|
+
method_option "pre", type: :boolean, banner: "Always choose the highest allowed version when updating gems, regardless of prerelease status"
|
273
|
+
method_option "strict", type: :boolean, banner: "Do not allow any gem to be updated past latest --patch | --minor | --major"
|
274
|
+
method_option "conservative", type: :boolean, banner: "Use bundle install conservative update behavior and do not allow shared dependencies to be updated."
|
275
|
+
method_option "all", type: :boolean, banner: "Update everything."
|
296
276
|
def update(*gems)
|
297
277
|
SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force")
|
298
278
|
require_relative "cli/update"
|
299
|
-
Bundler.settings.temporary(:
|
279
|
+
Bundler.settings.temporary(no_install: false) do
|
300
280
|
Update.new(options, gems).run
|
301
281
|
end
|
302
282
|
end
|
@@ -306,21 +286,23 @@ module Bundler
|
|
306
286
|
Show lists the names and versions of all gems that are required by your Gemfile.
|
307
287
|
Calling show with [GEM] will list the exact location of that gem on your machine.
|
308
288
|
D
|
309
|
-
method_option "paths", :
|
310
|
-
|
311
|
-
method_option "outdated", :type => :boolean,
|
312
|
-
:banner => "Show verbose output including whether gems are outdated."
|
289
|
+
method_option "paths", type: :boolean, banner: "List the paths of all gems that are required by your Gemfile."
|
290
|
+
method_option "outdated", type: :boolean, banner: "Show verbose output including whether gems are outdated."
|
313
291
|
def show(gem_name = nil)
|
314
|
-
|
292
|
+
if ARGV.include?("--outdated")
|
293
|
+
message = "the `--outdated` flag to `bundle show` was undocumented and will be removed without replacement"
|
294
|
+
removed_message = "the `--outdated` flag to `bundle show` was undocumented and has been removed without replacement"
|
295
|
+
SharedHelpers.major_deprecation(2, message, removed_message: removed_message)
|
296
|
+
end
|
315
297
|
require_relative "cli/show"
|
316
298
|
Show.new(options, gem_name).run
|
317
299
|
end
|
318
300
|
|
319
301
|
desc "list", "List all gems in the bundle"
|
320
|
-
method_option "name-only", :
|
321
|
-
method_option "only-group", :
|
322
|
-
method_option "without-group", :
|
323
|
-
method_option "paths", :
|
302
|
+
method_option "name-only", type: :boolean, banner: "print only the gem names"
|
303
|
+
method_option "only-group", type: :array, default: [], banner: "print gems from a given set of groups"
|
304
|
+
method_option "without-group", type: :array, default: [], banner: "print all gems except from a given set of groups"
|
305
|
+
method_option "paths", type: :boolean, banner: "print the path to each gem in the bundle"
|
324
306
|
def list
|
325
307
|
require_relative "cli/list"
|
326
308
|
List.new(options).run
|
@@ -329,7 +311,8 @@ module Bundler
|
|
329
311
|
map aliases_for("list")
|
330
312
|
|
331
313
|
desc "info GEM [OPTIONS]", "Show information for the given gem"
|
332
|
-
method_option "path", :
|
314
|
+
method_option "path", type: :boolean, banner: "Print full path to gem"
|
315
|
+
method_option "version", type: :boolean, banner: "Print gem version"
|
333
316
|
def info(gem_name)
|
334
317
|
require_relative "cli/info"
|
335
318
|
Info.new(options, gem_name).run
|
@@ -341,18 +324,12 @@ module Bundler
|
|
341
324
|
or the --binstubs directory if one has been set. Calling binstubs with [GEM [GEM]]
|
342
325
|
will create binstubs for all given gems.
|
343
326
|
D
|
344
|
-
method_option "force", :
|
345
|
-
|
346
|
-
method_option "
|
347
|
-
|
348
|
-
method_option "
|
349
|
-
|
350
|
-
method_option "standalone", :type => :boolean, :banner =>
|
351
|
-
"Make binstubs that can work without the Bundler runtime"
|
352
|
-
method_option "all", :type => :boolean, :banner =>
|
353
|
-
"Install binstubs for all gems"
|
354
|
-
method_option "all-platforms", :type => :boolean, :default => false, :banner =>
|
355
|
-
"Install binstubs for all platforms"
|
327
|
+
method_option "force", type: :boolean, default: false, banner: "Overwrite existing binstubs if they exist"
|
328
|
+
method_option "path", type: :string, lazy_default: "bin", banner: "Binstub destination directory (default bin)"
|
329
|
+
method_option "shebang", type: :string, banner: "Specify a different shebang executable name than the default (usually 'ruby')"
|
330
|
+
method_option "standalone", type: :boolean, banner: "Make binstubs that can work without the Bundler runtime"
|
331
|
+
method_option "all", type: :boolean, banner: "Install binstubs for all gems"
|
332
|
+
method_option "all-platforms", type: :boolean, default: false, banner: "Install binstubs for all platforms"
|
356
333
|
def binstubs(*gems)
|
357
334
|
require_relative "cli/binstubs"
|
358
335
|
Binstubs.new(options, gems).run
|
@@ -362,15 +339,20 @@ module Bundler
|
|
362
339
|
long_desc <<-D
|
363
340
|
Adds the specified gem to Gemfile (if valid) and run 'bundle install' in one step.
|
364
341
|
D
|
365
|
-
method_option "version", :
|
366
|
-
method_option "group", :
|
367
|
-
method_option "source", :
|
368
|
-
method_option "
|
369
|
-
method_option "
|
370
|
-
method_option "
|
371
|
-
|
372
|
-
method_option "
|
373
|
-
method_option "
|
342
|
+
method_option "version", aliases: "-v", type: :string
|
343
|
+
method_option "group", aliases: "-g", type: :string
|
344
|
+
method_option "source", aliases: "-s", type: :string
|
345
|
+
method_option "require", aliases: "-r", type: :string, banner: "Adds require path to gem. Provide false, or a path as a string."
|
346
|
+
method_option "path", type: :string
|
347
|
+
method_option "git", type: :string
|
348
|
+
method_option "github", type: :string
|
349
|
+
method_option "branch", type: :string
|
350
|
+
method_option "ref", type: :string
|
351
|
+
method_option "glob", type: :string, banner: "The location of a dependency's .gemspec, expanded within Ruby (single quotes recommended)"
|
352
|
+
method_option "quiet", type: :boolean, banner: "Only output warnings and errors."
|
353
|
+
method_option "skip-install", type: :boolean, banner: "Adds gem to the Gemfile but does not install it"
|
354
|
+
method_option "optimistic", type: :boolean, banner: "Adds optimistic declaration of version to gem"
|
355
|
+
method_option "strict", type: :boolean, banner: "Adds strict declaration of version to gem"
|
374
356
|
def add(*gems)
|
375
357
|
require_relative "cli/add"
|
376
358
|
Add.new(options.dup, gems).run
|
@@ -384,57 +366,45 @@ module Bundler
|
|
384
366
|
are up to date, Bundler will exit with a status of 0. Otherwise, it will exit 1.
|
385
367
|
|
386
368
|
For more information on patch level options (--major, --minor, --patch,
|
387
|
-
--
|
369
|
+
--strict) see documentation on the same options on the update command.
|
388
370
|
D
|
389
|
-
method_option "group", :
|
390
|
-
method_option "groups", :
|
391
|
-
method_option "local", :
|
392
|
-
|
393
|
-
method_option "
|
394
|
-
method_option "
|
395
|
-
|
396
|
-
method_option "
|
397
|
-
|
398
|
-
method_option "
|
399
|
-
|
400
|
-
method_option "minor", :
|
401
|
-
method_option "
|
402
|
-
method_option "
|
403
|
-
method_option "
|
404
|
-
method_option "filter-minor", :type => :boolean, :banner => "Only list minor newer versions"
|
405
|
-
method_option "filter-patch", :type => :boolean, :banner => "Only list patch newer versions"
|
406
|
-
method_option "parseable", :aliases => "--porcelain", :type => :boolean, :banner =>
|
407
|
-
"Use minimal formatting for more parseable output"
|
408
|
-
method_option "only-explicit", :type => :boolean, :banner =>
|
409
|
-
"Only list gems specified in your Gemfile, not their dependencies"
|
371
|
+
method_option "group", type: :string, banner: "List gems from a specific group"
|
372
|
+
method_option "groups", type: :boolean, banner: "List gems organized by groups"
|
373
|
+
method_option "local", type: :boolean, banner: "Do not attempt to fetch gems remotely and use the gem cache instead"
|
374
|
+
method_option "pre", type: :boolean, banner: "Check for newer pre-release gems"
|
375
|
+
method_option "source", type: :array, banner: "Check against a specific source"
|
376
|
+
method_option "filter-strict", type: :boolean, aliases: "--strict", banner: "Only list newer versions allowed by your Gemfile requirements"
|
377
|
+
method_option "update-strict", type: :boolean, banner: "Strict conservative resolution, do not allow any gem to be updated past latest --patch | --minor | --major"
|
378
|
+
method_option "minor", type: :boolean, banner: "Prefer updating only to next minor version"
|
379
|
+
method_option "major", type: :boolean, banner: "Prefer updating to next major version (default)"
|
380
|
+
method_option "patch", type: :boolean, banner: "Prefer updating only to next patch version"
|
381
|
+
method_option "filter-major", type: :boolean, banner: "Only list major newer versions"
|
382
|
+
method_option "filter-minor", type: :boolean, banner: "Only list minor newer versions"
|
383
|
+
method_option "filter-patch", type: :boolean, banner: "Only list patch newer versions"
|
384
|
+
method_option "parseable", aliases: "--porcelain", type: :boolean, banner: "Use minimal formatting for more parseable output"
|
385
|
+
method_option "only-explicit", type: :boolean, banner: "Only list gems specified in your Gemfile, not their dependencies"
|
410
386
|
def outdated(*gems)
|
411
387
|
require_relative "cli/outdated"
|
412
388
|
Outdated.new(options, gems).run
|
413
389
|
end
|
414
390
|
|
415
391
|
desc "fund [OPTIONS]", "Lists information about gems seeking funding assistance"
|
416
|
-
method_option "group", :
|
417
|
-
"Fetch funding information for a specific group"
|
392
|
+
method_option "group", aliases: "-g", type: :array, banner: "Fetch funding information for a specific group"
|
418
393
|
def fund
|
419
394
|
require_relative "cli/fund"
|
420
395
|
Fund.new(options).run
|
421
396
|
end
|
422
397
|
|
423
398
|
desc "cache [OPTIONS]", "Locks and then caches all of the gems into vendor/cache"
|
424
|
-
method_option "all",
|
425
|
-
|
426
|
-
|
427
|
-
method_option "
|
428
|
-
method_option "
|
429
|
-
|
430
|
-
method_option "
|
431
|
-
method_option "
|
432
|
-
method_option "
|
433
|
-
method_option "path", :type => :string, :banner =>
|
434
|
-
"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?}"
|
435
|
-
method_option "quiet", :type => :boolean, :banner => "Only output warnings and errors."
|
436
|
-
method_option "frozen", :type => :boolean, :banner =>
|
437
|
-
"Do not allow the Gemfile.lock to be updated after this bundle cache operation's install"
|
399
|
+
method_option "all", type: :boolean, default: Bundler.feature_flag.cache_all?, banner: "Include all sources (including path and git)."
|
400
|
+
method_option "all-platforms", type: :boolean, banner: "Include gems for all platforms present in the lockfile, not only the current one"
|
401
|
+
method_option "cache-path", type: :string, banner: "Specify a different cache path than the default (vendor/cache)."
|
402
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
403
|
+
method_option "no-install", type: :boolean, banner: "Don't install the gems, only update the cache."
|
404
|
+
method_option "no-prune", type: :boolean, banner: "Don't remove stale gems from the cache."
|
405
|
+
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?}"
|
406
|
+
method_option "quiet", type: :boolean, banner: "Only output warnings and errors."
|
407
|
+
method_option "frozen", type: :boolean, banner: "Do not allow the Gemfile.lock to be updated after this bundle cache operation's install"
|
438
408
|
long_desc <<-D
|
439
409
|
The cache command will copy the .gem files for every gem in the bundle into the
|
440
410
|
directory ./vendor/cache. If you then check that directory into your source
|
@@ -442,17 +412,20 @@ module Bundler
|
|
442
412
|
bundle without having to download any additional gems.
|
443
413
|
D
|
444
414
|
def cache
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
415
|
+
print_remembered_flag_deprecation("--all", "cache_all", "true") if ARGV.include?("--all")
|
416
|
+
|
417
|
+
if ARGV.include?("--path")
|
418
|
+
message =
|
419
|
+
"The `--path` flag is deprecated because its semantics are unclear. " \
|
420
|
+
"Use `bundle config cache_path` to configure the path of your cache of gems, " \
|
421
|
+
"and `bundle config path` to configure the path where your gems are installed, " \
|
422
|
+
"and stop using this flag"
|
423
|
+
removed_message =
|
424
|
+
"The `--path` flag has been removed because its semantics were unclear. " \
|
425
|
+
"Use `bundle config cache_path` to configure the path of your cache of gems, " \
|
426
|
+
"and `bundle config path` to configure the path where your gems are installed."
|
427
|
+
SharedHelpers.major_deprecation 2, message, removed_message: removed_message
|
428
|
+
end
|
456
429
|
|
457
430
|
require_relative "cli/cache"
|
458
431
|
Cache.new(options).run
|
@@ -461,8 +434,8 @@ module Bundler
|
|
461
434
|
map aliases_for("cache")
|
462
435
|
|
463
436
|
desc "exec [OPTIONS]", "Run the command in context of the bundle"
|
464
|
-
method_option :keep_file_descriptors, :
|
465
|
-
method_option :gemfile, :
|
437
|
+
method_option :keep_file_descriptors, type: :boolean, default: true, banner: "Passes all file descriptors to the new processes. Default is true, and setting it to false is deprecated"
|
438
|
+
method_option :gemfile, type: :string, required: false, banner: "Use the specified gemfile instead of Gemfile"
|
466
439
|
long_desc <<-D
|
467
440
|
Exec runs a command, providing it access to the gems in the bundle. While using
|
468
441
|
bundle exec you can require and call the bundled gems as if they were installed
|
@@ -470,7 +443,9 @@ module Bundler
|
|
470
443
|
D
|
471
444
|
def exec(*args)
|
472
445
|
if ARGV.include?("--no-keep-file-descriptors")
|
473
|
-
|
446
|
+
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"
|
447
|
+
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"
|
448
|
+
SharedHelpers.major_deprecation(2, message, removed_message: removed_message)
|
474
449
|
end
|
475
450
|
|
476
451
|
require_relative "cli/exec"
|
@@ -495,20 +470,19 @@ module Bundler
|
|
495
470
|
subcommand "config", Config
|
496
471
|
|
497
472
|
desc "open GEM", "Opens the source directory of the given bundled gem"
|
473
|
+
method_option "path", type: :string, lazy_default: "", banner: "Open relative path of the gem source."
|
498
474
|
def open(name)
|
499
475
|
require_relative "cli/open"
|
500
476
|
Open.new(options, name).run
|
501
477
|
end
|
502
478
|
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
Console.new(options, group).run
|
508
|
-
end
|
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
|
509
483
|
end
|
510
484
|
|
511
|
-
desc "version", "Prints
|
485
|
+
desc "version", "Prints Bundler version information"
|
512
486
|
def version
|
513
487
|
cli_help = current_command.name == "cli_help"
|
514
488
|
if cli_help || ARGV.include?("version")
|
@@ -539,95 +513,68 @@ module Bundler
|
|
539
513
|
end
|
540
514
|
|
541
515
|
unless Bundler.feature_flag.bundler_3_mode?
|
542
|
-
desc "viz [OPTIONS]", "Generates a visual dependency graph", :
|
516
|
+
desc "viz [OPTIONS]", "Generates a visual dependency graph", hide: true
|
543
517
|
long_desc <<-D
|
544
518
|
Viz generates a PNG file of the current Gemfile as a dependency graph.
|
545
519
|
Viz requires the ruby-graphviz gem (and its dependencies).
|
546
520
|
The associated gems must also be installed via 'bundle install'.
|
547
521
|
D
|
548
|
-
method_option :file, :
|
549
|
-
method_option :format, :
|
550
|
-
method_option :requirements, :
|
551
|
-
method_option :version, :
|
552
|
-
method_option :without, :
|
522
|
+
method_option :file, type: :string, default: "gem_graph", aliases: "-f", desc: "The name to use for the generated file. see format option"
|
523
|
+
method_option :format, type: :string, default: "png", aliases: "-F", desc: "This is output format option. Supported format is png, jpg, svg, dot ..."
|
524
|
+
method_option :requirements, type: :boolean, default: false, aliases: "-R", desc: "Set to show the version of each required dependency."
|
525
|
+
method_option :version, type: :boolean, default: false, aliases: "-v", desc: "Set to show each gem version."
|
526
|
+
method_option :without, type: :array, default: [], aliases: "-W", banner: "GROUP[ GROUP...]", desc: "Exclude gems that are part of the specified named group."
|
553
527
|
def viz
|
554
|
-
SharedHelpers.major_deprecation 2, "The `viz` command has been
|
528
|
+
SharedHelpers.major_deprecation 2, "The `viz` command has been renamed to `graph` and moved to a plugin. See https://github.com/rubygems/bundler-graph"
|
555
529
|
require_relative "cli/viz"
|
556
530
|
Viz.new(options.dup).run
|
557
531
|
end
|
558
532
|
end
|
559
533
|
|
560
|
-
old_gem = instance_method(:gem)
|
561
|
-
|
562
534
|
desc "gem NAME [OPTIONS]", "Creates a skeleton for creating a rubygem"
|
563
|
-
method_option :exe, :
|
564
|
-
method_option :coc, :
|
565
|
-
method_option :edit, :
|
566
|
-
|
567
|
-
|
568
|
-
method_option :
|
569
|
-
method_option :
|
570
|
-
method_option :
|
571
|
-
method_option :
|
572
|
-
method_option :
|
573
|
-
method_option :
|
574
|
-
|
575
|
-
method_option :ci, :type => :string, :lazy_default => Bundler.settings["gem.ci"] || "",
|
576
|
-
:desc => "Generate CI configuration, either GitHub Actions, Travis CI, GitLab CI or CircleCI. Set a default with `bundle config set --global gem.ci (github|travis|gitlab|circle)`"
|
577
|
-
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>`."
|
535
|
+
method_option :exe, type: :boolean, default: false, aliases: ["--bin", "-b"], desc: "Generate a binary executable for your library."
|
536
|
+
method_option :coc, type: :boolean, desc: "Generate a code of conduct file. Set a default with `bundle config set --global gem.coc true`."
|
537
|
+
method_option :edit, type: :string, aliases: "-e", required: false, banner: "EDITOR", lazy_default: [ENV["BUNDLER_EDITOR"], ENV["VISUAL"], ENV["EDITOR"]].find {|e| !e.nil? && !e.empty? }, desc: "Open generated gemspec in the specified editor (defaults to $EDITOR or $BUNDLER_EDITOR)"
|
538
|
+
method_option :ext, type: :string, desc: "Generate the boilerplate for C extension code.", enum: EXTENSIONS
|
539
|
+
method_option :git, type: :boolean, default: true, desc: "Initialize a git repo inside your library."
|
540
|
+
method_option :mit, type: :boolean, desc: "Generate an MIT license file. Set a default with `bundle config set --global gem.mit true`."
|
541
|
+
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`."
|
542
|
+
method_option :changelog, type: :boolean, desc: "Generate changelog file. Set a default with `bundle config set --global gem.changelog true`."
|
543
|
+
method_option :test, type: :string, lazy_default: Bundler.settings["gem.test"] || "", aliases: "-t", banner: "Use the specified test framework for your library", enum: %w[rspec minitest test-unit], 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)`."
|
544
|
+
method_option :ci, type: :string, lazy_default: Bundler.settings["gem.ci"] || "", enum: %w[github gitlab circle], desc: "Generate CI configuration, either GitHub Actions, GitLab CI or CircleCI. Set a default with `bundle config set --global gem.ci (github|gitlab|circle)`"
|
545
|
+
method_option :linter, type: :string, lazy_default: Bundler.settings["gem.linter"] || "", enum: %w[rubocop standard], desc: "Add a linter and code formatter, either RuboCop or Standard. Set a default with `bundle config set --global gem.linter (rubocop|standard)`"
|
546
|
+
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>`."
|
578
547
|
|
579
548
|
def gem(name)
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
def gem_command.run(instance, args = [])
|
584
|
-
arity = 1 # name
|
549
|
+
require_relative "cli/gem"
|
550
|
+
cmd_args = args + [self]
|
551
|
+
cmd_args.unshift(options)
|
585
552
|
|
586
|
-
|
587
|
-
cmd_args = args + [instance]
|
588
|
-
cmd_args.unshift(instance.options)
|
589
|
-
|
590
|
-
cmd = begin
|
591
|
-
Gem.new(*cmd_args)
|
592
|
-
rescue ArgumentError => e
|
593
|
-
instance.class.handle_argument_error(self, e, args, arity)
|
594
|
-
end
|
595
|
-
|
596
|
-
cmd.run
|
597
|
-
end
|
553
|
+
Gem.new(*cmd_args).run
|
598
554
|
end
|
599
555
|
|
600
|
-
undef_method(:gem)
|
601
|
-
define_method(:gem, old_gem)
|
602
|
-
private :gem
|
603
|
-
|
604
556
|
def self.source_root
|
605
|
-
File.expand_path(
|
557
|
+
File.expand_path("templates", __dir__)
|
606
558
|
end
|
607
559
|
|
608
|
-
desc "clean [OPTIONS]", "Cleans up unused gems in your bundler directory", :
|
609
|
-
method_option "dry-run", :
|
610
|
-
|
611
|
-
method_option "force", :type => :boolean, :default => false, :banner =>
|
612
|
-
"Forces clean even if --path is not set"
|
560
|
+
desc "clean [OPTIONS]", "Cleans up unused gems in your bundler directory", hide: true
|
561
|
+
method_option "dry-run", type: :boolean, default: false, banner: "Only print out changes, do not clean gems"
|
562
|
+
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."
|
613
563
|
def clean
|
614
564
|
require_relative "cli/clean"
|
615
565
|
Clean.new(options.dup).run
|
616
566
|
end
|
617
567
|
|
618
568
|
desc "platform [OPTIONS]", "Displays platform compatibility information"
|
619
|
-
method_option "ruby", :
|
620
|
-
"only display ruby related platform information"
|
569
|
+
method_option "ruby", type: :boolean, default: false, banner: "only display ruby related platform information"
|
621
570
|
def platform
|
622
571
|
require_relative "cli/platform"
|
623
572
|
Platform.new(options).run
|
624
573
|
end
|
625
574
|
|
626
|
-
desc "inject GEM VERSION", "Add the named gem, with version requirements, to the resolved Gemfile", :
|
627
|
-
method_option "source", :
|
628
|
-
|
629
|
-
method_option "group", :type => :string, :banner =>
|
630
|
-
"Install gem into a bundler group"
|
575
|
+
desc "inject GEM VERSION", "Add the named gem, with version requirements, to the resolved Gemfile", hide: true
|
576
|
+
method_option "source", type: :string, banner: "Install gem from the given source"
|
577
|
+
method_option "group", type: :string, banner: "Install gem into a bundler group"
|
631
578
|
def inject(name, version)
|
632
579
|
SharedHelpers.major_deprecation 2, "The `inject` command has been replaced by the `add` command"
|
633
580
|
require_relative "cli/inject"
|
@@ -635,32 +582,23 @@ module Bundler
|
|
635
582
|
end
|
636
583
|
|
637
584
|
desc "lock", "Creates a lockfile without installing"
|
638
|
-
method_option "update", :
|
639
|
-
|
640
|
-
method_option "
|
641
|
-
|
642
|
-
method_option "
|
643
|
-
|
644
|
-
method_option "
|
645
|
-
|
646
|
-
method_option "
|
647
|
-
|
648
|
-
method_option "
|
649
|
-
|
650
|
-
method_option "
|
651
|
-
|
652
|
-
method_option "
|
653
|
-
|
654
|
-
method_option "
|
655
|
-
"If updating, prefer updating only to next patch version"
|
656
|
-
method_option "minor", :type => :boolean, :banner =>
|
657
|
-
"If updating, prefer updating only to next minor version"
|
658
|
-
method_option "major", :type => :boolean, :banner =>
|
659
|
-
"If updating, prefer updating to next major version (default)"
|
660
|
-
method_option "strict", :type => :boolean, :banner =>
|
661
|
-
"If updating, do not allow any gem to be updated past latest --patch | --minor | --major"
|
662
|
-
method_option "conservative", :type => :boolean, :banner =>
|
663
|
-
"If updating, use bundle install conservative update behavior and do not allow shared dependencies to be updated"
|
585
|
+
method_option "update", type: :array, lazy_default: true, banner: "ignore the existing lockfile, update all gems by default, or update list of given gems"
|
586
|
+
method_option "local", type: :boolean, default: false, banner: "do not attempt to fetch remote gemspecs and use the local gem cache only"
|
587
|
+
method_option "print", type: :boolean, default: false, banner: "print the lockfile to STDOUT instead of writing to the file system"
|
588
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
589
|
+
method_option "lockfile", type: :string, default: nil, banner: "the path the lockfile should be written to"
|
590
|
+
method_option "full-index", type: :boolean, default: false, banner: "Fall back to using the single-file index of all gems"
|
591
|
+
method_option "add-checksums", type: :boolean, default: false, banner: "Adds checksums to the lockfile"
|
592
|
+
method_option "add-platform", type: :array, default: [], banner: "Add a new platform to the lockfile"
|
593
|
+
method_option "remove-platform", type: :array, default: [], banner: "Remove a platform from the lockfile"
|
594
|
+
method_option "normalize-platforms", type: :boolean, default: false, banner: "Normalize lockfile platforms"
|
595
|
+
method_option "patch", type: :boolean, banner: "If updating, prefer updating only to next patch version"
|
596
|
+
method_option "minor", type: :boolean, banner: "If updating, prefer updating only to next minor version"
|
597
|
+
method_option "major", type: :boolean, banner: "If updating, prefer updating to next major version (default)"
|
598
|
+
method_option "pre", type: :boolean, banner: "If updating, always choose the highest allowed version, regardless of prerelease status"
|
599
|
+
method_option "strict", type: :boolean, banner: "If updating, do not allow any gem to be updated past latest --patch | --minor | --major"
|
600
|
+
method_option "conservative", type: :boolean, banner: "If updating, use bundle install conservative update behavior and do not allow shared dependencies to be updated"
|
601
|
+
method_option "bundler", type: :string, lazy_default: "> 0.a", banner: "Update the locked version of bundler"
|
664
602
|
def lock
|
665
603
|
require_relative "cli/lock"
|
666
604
|
Lock.new(options).run
|
@@ -677,10 +615,8 @@ module Bundler
|
|
677
615
|
missing dependencies are detected, Bundler prints them and exits status 1.
|
678
616
|
Otherwise, Bundler prints a success message and exits with a status of 0.
|
679
617
|
D
|
680
|
-
method_option "gemfile", :
|
681
|
-
|
682
|
-
method_option "quiet", :type => :boolean, :banner =>
|
683
|
-
"Only output warnings and errors."
|
618
|
+
method_option "gemfile", type: :string, banner: "Use the specified gemfile instead of Gemfile"
|
619
|
+
method_option "quiet", type: :boolean, banner: "Only output warnings and errors."
|
684
620
|
def doctor
|
685
621
|
require_relative "cli/doctor"
|
686
622
|
Doctor.new(options).run
|
@@ -700,7 +636,9 @@ module Bundler
|
|
700
636
|
D
|
701
637
|
def pristine(*gems)
|
702
638
|
require_relative "cli/pristine"
|
703
|
-
|
639
|
+
Bundler.settings.temporary(no_install: false) do
|
640
|
+
Pristine.new(gems).run
|
641
|
+
end
|
704
642
|
end
|
705
643
|
|
706
644
|
if Bundler.feature_flag.plugins?
|
@@ -721,7 +659,6 @@ module Bundler
|
|
721
659
|
exec_used = args.index {|a| exec_commands.include? a }
|
722
660
|
|
723
661
|
command = args.find {|a| bundler_commands.include? a }
|
724
|
-
command = all_aliases[command] if all_aliases[command]
|
725
662
|
|
726
663
|
if exec_used && help_used
|
727
664
|
if exec_used + help_used == 1
|
@@ -738,28 +675,42 @@ module Bundler
|
|
738
675
|
end
|
739
676
|
end
|
740
677
|
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
# `Installer` that'll keep a reference to the old one instead.
|
750
|
-
def auto_install
|
751
|
-
return unless Bundler.settings[:auto_install]
|
752
|
-
|
753
|
-
begin
|
754
|
-
Bundler.definition.specs
|
755
|
-
rescue GemNotFound
|
756
|
-
Bundler.ui.info "Automatically installing missing gems."
|
757
|
-
Bundler.reset!
|
758
|
-
invoke :install, []
|
759
|
-
Bundler.reset!
|
678
|
+
def self.check_deprecated_ext_option(arguments)
|
679
|
+
# when deprecated version of `--ext` is called
|
680
|
+
# print out deprecation warning and pretend `--ext=c` was provided
|
681
|
+
if deprecated_ext_value?(arguments)
|
682
|
+
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."
|
683
|
+
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."
|
684
|
+
SharedHelpers.major_deprecation 2, message, removed_message: removed_message
|
685
|
+
arguments[arguments.index("--ext")] = "--ext=c"
|
760
686
|
end
|
761
687
|
end
|
762
688
|
|
689
|
+
def self.deprecated_ext_value?(arguments)
|
690
|
+
index = arguments.index("--ext")
|
691
|
+
next_argument = arguments[index + 1]
|
692
|
+
|
693
|
+
# it is ok when --ext is followed with valid extension value
|
694
|
+
# for example `bundle gem hello --ext c`
|
695
|
+
return false if EXTENSIONS.include?(next_argument)
|
696
|
+
|
697
|
+
# deprecated call when --ext is called with no value in last position
|
698
|
+
# for example `bundle gem hello_gem --ext`
|
699
|
+
return true if next_argument.nil?
|
700
|
+
|
701
|
+
# deprecated call when --ext is followed by other parameter
|
702
|
+
# for example `bundle gem --ext --no-ci hello_gem`
|
703
|
+
return true if next_argument.start_with?("-")
|
704
|
+
|
705
|
+
# deprecated call when --ext is followed by gem name
|
706
|
+
# for example `bundle gem --ext hello_gem`
|
707
|
+
return true if next_argument
|
708
|
+
|
709
|
+
false
|
710
|
+
end
|
711
|
+
|
712
|
+
private
|
713
|
+
|
763
714
|
def current_command
|
764
715
|
_, _, config = @_initializer
|
765
716
|
config[:current_command]
|
@@ -789,28 +740,18 @@ module Bundler
|
|
789
740
|
|
790
741
|
return unless SharedHelpers.md5_available?
|
791
742
|
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
dependencies("bundler").
|
797
|
-
map {|d| Gem::Version.new(d.first) }.
|
798
|
-
max
|
743
|
+
require_relative "vendored_uri"
|
744
|
+
remote = Source::Rubygems::Remote.new(Gem::URI("https://rubygems.org"))
|
745
|
+
cache_path = Bundler.user_cache.join("compact_index", remote.cache_slug)
|
746
|
+
latest = Bundler::CompactIndexClient.new(cache_path).latest_version("bundler")
|
799
747
|
return unless latest
|
800
748
|
|
801
749
|
current = Gem::Version.new(VERSION)
|
802
750
|
return if current >= latest
|
803
|
-
latest_installed = Bundler.rubygems.find_name("bundler").map(&:version).max
|
804
751
|
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
suggestion = "#{installation}\n#{suggestion}" if latest_installed < latest
|
809
|
-
else
|
810
|
-
suggestion = installation
|
811
|
-
end
|
812
|
-
|
813
|
-
Bundler.ui.warn "The latest bundler is #{latest}, but you are currently running #{current}.\n#{suggestion}"
|
752
|
+
Bundler.ui.warn \
|
753
|
+
"The latest bundler is #{latest}, but you are currently running #{current}.\n" \
|
754
|
+
"To update to the most recent version, run `bundle update --bundler`"
|
814
755
|
rescue RuntimeError
|
815
756
|
nil
|
816
757
|
end
|
@@ -836,12 +777,23 @@ module Bundler
|
|
836
777
|
|
837
778
|
value = options[name]
|
838
779
|
value = value.join(" ").to_s if option.type == :array
|
780
|
+
value = "'#{value}'" unless option.type == :boolean
|
781
|
+
|
782
|
+
print_remembered_flag_deprecation(flag_name, name.tr("-", "_"), value)
|
783
|
+
end
|
839
784
|
|
840
|
-
|
785
|
+
def print_remembered_flag_deprecation(flag_name, option_name, option_value)
|
786
|
+
message =
|
841
787
|
"The `#{flag_name}` flag is deprecated because it relies on being " \
|
842
788
|
"remembered across bundler invocations, which bundler will no longer " \
|
843
|
-
"do in future versions. Instead please use `bundle config set
|
844
|
-
"
|
789
|
+
"do in future versions. Instead please use `bundle config set #{option_name} " \
|
790
|
+
"#{option_value}`, and stop using this flag"
|
791
|
+
removed_message =
|
792
|
+
"The `#{flag_name}` flag has been removed because it relied on being " \
|
793
|
+
"remembered across bundler invocations, which bundler will no longer " \
|
794
|
+
"do. Instead please use `bundle config set #{option_name} " \
|
795
|
+
"#{option_value}`, and stop using this flag"
|
796
|
+
Bundler::SharedHelpers.major_deprecation 2, message, removed_message: removed_message
|
845
797
|
end
|
846
798
|
end
|
847
799
|
end
|