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/index.rb
CHANGED
@@ -10,30 +10,30 @@ module Bundler
|
|
10
10
|
i
|
11
11
|
end
|
12
12
|
|
13
|
-
attr_reader :specs, :
|
14
|
-
protected :specs, :
|
13
|
+
attr_reader :specs, :duplicates, :sources
|
14
|
+
protected :specs, :duplicates
|
15
15
|
|
16
|
-
RUBY = "ruby"
|
17
|
-
NULL = "\0"
|
16
|
+
RUBY = "ruby"
|
17
|
+
NULL = "\0"
|
18
18
|
|
19
19
|
def initialize
|
20
20
|
@sources = []
|
21
21
|
@cache = {}
|
22
|
-
@specs =
|
23
|
-
@
|
22
|
+
@specs = {}
|
23
|
+
@duplicates = {}
|
24
24
|
end
|
25
25
|
|
26
26
|
def initialize_copy(o)
|
27
27
|
@sources = o.sources.dup
|
28
28
|
@cache = {}
|
29
|
-
@specs =
|
30
|
-
@
|
29
|
+
@specs = {}
|
30
|
+
@duplicates = {}
|
31
31
|
|
32
32
|
o.specs.each do |name, hash|
|
33
33
|
@specs[name] = hash.dup
|
34
34
|
end
|
35
|
-
o.
|
36
|
-
@
|
35
|
+
o.duplicates.each do |name, array|
|
36
|
+
@duplicates[name] = array.dup
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
@@ -46,66 +46,42 @@ module Bundler
|
|
46
46
|
true
|
47
47
|
end
|
48
48
|
|
49
|
-
def search_all(name)
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
all_matches
|
49
|
+
def search_all(name, &blk)
|
50
|
+
return enum_for(:search_all, name) unless blk
|
51
|
+
specs_by_name(name).each(&blk)
|
52
|
+
@duplicates[name]&.each(&blk)
|
53
|
+
@sources.each {|source| source.search_all(name, &blk) }
|
55
54
|
end
|
56
55
|
|
57
56
|
# Search this index's specs, and any source indexes that this index knows
|
58
57
|
# about, returning all of the results.
|
59
|
-
def search(query
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
def unsorted_search(query, base)
|
64
|
-
results = local_search(query, base)
|
65
|
-
|
66
|
-
seen = results.map(&:full_name).uniq unless @sources.empty?
|
58
|
+
def search(query)
|
59
|
+
results = local_search(query)
|
60
|
+
return results unless @sources.any?
|
67
61
|
|
68
62
|
@sources.each do |source|
|
69
|
-
source.
|
70
|
-
next if seen.include?(spec.full_name)
|
71
|
-
|
72
|
-
seen << spec.full_name
|
73
|
-
results << spec
|
74
|
-
end
|
63
|
+
results = safe_concat(results, source.search(query))
|
75
64
|
end
|
76
|
-
|
65
|
+
results.uniq!(&:full_name) unless results.empty? # avoid modifying frozen EMPTY_SEARCH
|
77
66
|
results
|
78
67
|
end
|
79
|
-
protected :unsorted_search
|
80
68
|
|
81
|
-
|
82
|
-
specs.sort_by do |s|
|
83
|
-
platform_string = s.platform.to_s
|
84
|
-
[s.version, platform_string == RUBY ? NULL : platform_string]
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
def sort_specs(specs)
|
89
|
-
self.class.sort_specs(specs)
|
90
|
-
end
|
69
|
+
alias_method :[], :search
|
91
70
|
|
92
|
-
def local_search(query
|
71
|
+
def local_search(query)
|
93
72
|
case query
|
94
73
|
when Gem::Specification, RemoteSpecification, LazySpecification, EndpointSpecification then search_by_spec(query)
|
95
74
|
when String then specs_by_name(query)
|
96
|
-
when
|
97
|
-
when DepProxy then search_by_dependency(query.dep, base)
|
75
|
+
when Array then specs_by_name_and_version(*query)
|
98
76
|
else
|
99
77
|
raise "You can't search for a #{query.inspect}."
|
100
78
|
end
|
101
79
|
end
|
102
80
|
|
103
|
-
|
104
|
-
|
105
|
-
def <<(spec)
|
106
|
-
@specs[spec.name][spec.full_name] = spec
|
107
|
-
spec
|
81
|
+
def add(spec)
|
82
|
+
(@specs[spec.name] ||= {}).store(spec.full_name, spec)
|
108
83
|
end
|
84
|
+
alias_method :<<, :add
|
109
85
|
|
110
86
|
def each(&blk)
|
111
87
|
return enum_for(:each) unless blk
|
@@ -139,15 +115,25 @@ module Bundler
|
|
139
115
|
names.uniq
|
140
116
|
end
|
141
117
|
|
142
|
-
|
118
|
+
# Combines indexes proritizing existing specs, like `Hash#reverse_merge!`
|
119
|
+
# Duplicate specs found in `other` are stored in `@duplicates`.
|
120
|
+
def use(other)
|
121
|
+
return unless other
|
122
|
+
other.each do |spec|
|
123
|
+
exist?(spec) ? add_duplicate(spec) : add(spec)
|
124
|
+
end
|
125
|
+
self
|
126
|
+
end
|
127
|
+
|
128
|
+
# Combines indexes proritizing specs from `other`, like `Hash#merge!`
|
129
|
+
# Duplicate specs found in `self` are saved in `@duplicates`.
|
130
|
+
def merge!(other)
|
143
131
|
return unless other
|
144
|
-
other.each do |
|
145
|
-
if
|
146
|
-
|
147
|
-
@all_specs[s.name] = dupes << s
|
148
|
-
next unless override_dupes
|
132
|
+
other.each do |spec|
|
133
|
+
if existing = find_by_spec(spec)
|
134
|
+
add_duplicate(existing)
|
149
135
|
end
|
150
|
-
|
136
|
+
add spec
|
151
137
|
end
|
152
138
|
self
|
153
139
|
end
|
@@ -159,8 +145,7 @@ module Bundler
|
|
159
145
|
end
|
160
146
|
|
161
147
|
# Whether all the specs in self are in other
|
162
|
-
|
163
|
-
def ==(other)
|
148
|
+
def subset?(other)
|
164
149
|
all? do |spec|
|
165
150
|
other_spec = other[spec].first
|
166
151
|
other_spec && dependencies_eql?(spec, other_spec) && spec.source == other_spec.source
|
@@ -181,33 +166,40 @@ module Bundler
|
|
181
166
|
|
182
167
|
private
|
183
168
|
|
184
|
-
def
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
@cache[base || false] ||= {}
|
190
|
-
@cache[base || false][dependency] ||= begin
|
191
|
-
specs = specs_by_name(dependency.name)
|
192
|
-
specs += base if base
|
193
|
-
found = specs.select do |spec|
|
194
|
-
next true if spec.source.is_a?(Source::Gemspec)
|
195
|
-
if base # allow all platforms when searching from a lockfile
|
196
|
-
dependency.matches_spec?(spec)
|
197
|
-
else
|
198
|
-
dependency.matches_spec?(spec) && Gem::Platform.match_spec?(spec)
|
199
|
-
end
|
200
|
-
end
|
169
|
+
def safe_concat(a, b)
|
170
|
+
return a if b.empty?
|
171
|
+
return b if a.empty?
|
172
|
+
a.concat(b)
|
173
|
+
end
|
201
174
|
|
202
|
-
|
203
|
-
|
175
|
+
def add_duplicate(spec)
|
176
|
+
(@duplicates[spec.name] ||= []) << spec
|
177
|
+
end
|
178
|
+
|
179
|
+
def specs_by_name_and_version(name, version)
|
180
|
+
results = @specs[name]&.values
|
181
|
+
return EMPTY_SEARCH unless results
|
182
|
+
results.select! {|spec| spec.version == version }
|
183
|
+
results
|
184
|
+
end
|
185
|
+
|
186
|
+
def specs_by_name(name)
|
187
|
+
@specs[name]&.values || EMPTY_SEARCH
|
204
188
|
end
|
205
189
|
|
206
190
|
EMPTY_SEARCH = [].freeze
|
207
191
|
|
208
192
|
def search_by_spec(spec)
|
209
|
-
spec =
|
193
|
+
spec = find_by_spec(spec)
|
210
194
|
spec ? [spec] : EMPTY_SEARCH
|
211
195
|
end
|
196
|
+
|
197
|
+
def find_by_spec(spec)
|
198
|
+
@specs[spec.name]&.fetch(spec.full_name, nil)
|
199
|
+
end
|
200
|
+
|
201
|
+
def exist?(spec)
|
202
|
+
@specs[spec.name]&.key?(spec.full_name)
|
203
|
+
end
|
212
204
|
end
|
213
205
|
end
|
data/lib/bundler/injector.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module Bundler
|
4
4
|
class Injector
|
5
|
-
INJECTED_GEMS = "injected gems"
|
5
|
+
INJECTED_GEMS = "injected gems"
|
6
6
|
|
7
7
|
def self.inject(new_deps, options = {})
|
8
8
|
injector = new(new_deps, options)
|
@@ -23,13 +23,10 @@ module Bundler
|
|
23
23
|
# @param [Pathname] lockfile_path The lockfile in which to inject the new dependency.
|
24
24
|
# @return [Array]
|
25
25
|
def inject(gemfile_path, lockfile_path)
|
26
|
-
|
27
|
-
# ensure the lock and Gemfile are synced
|
28
|
-
Bundler.definition.ensure_equivalent_gemfile_and_lockfile(true)
|
29
|
-
end
|
26
|
+
Bundler.definition.ensure_equivalent_gemfile_and_lockfile(true)
|
30
27
|
|
31
28
|
# temporarily unfreeze
|
32
|
-
Bundler.settings.temporary(:
|
29
|
+
Bundler.settings.temporary(deployment: false, frozen: false) do
|
33
30
|
# evaluate the Gemfile we have now
|
34
31
|
builder = Dsl.new
|
35
32
|
builder.eval_gemfile(gemfile_path)
|
@@ -44,13 +41,13 @@ module Bundler
|
|
44
41
|
|
45
42
|
# resolve to see if the new deps broke anything
|
46
43
|
@definition = builder.to_definition(lockfile_path, {})
|
47
|
-
@definition.
|
44
|
+
@definition.remotely!
|
48
45
|
|
49
46
|
# since nothing broke, we can add those gems to the gemfile
|
50
47
|
append_to(gemfile_path, build_gem_lines(@options[:conservative_versioning])) if @deps.any?
|
51
48
|
|
52
49
|
# since we resolved successfully, write out the lockfile
|
53
|
-
@definition.lock
|
50
|
+
@definition.lock
|
54
51
|
|
55
52
|
# invalidate the cached Bundler.definition
|
56
53
|
Bundler.reset_paths!
|
@@ -70,8 +67,12 @@ module Bundler
|
|
70
67
|
|
71
68
|
show_warning("No gems were removed from the gemfile.") if deps.empty?
|
72
69
|
|
73
|
-
deps.each {|dep| Bundler.ui.confirm "#{SharedHelpers.pretty_dependency(dep
|
70
|
+
deps.each {|dep| Bundler.ui.confirm "#{SharedHelpers.pretty_dependency(dep)} was removed." }
|
74
71
|
end
|
72
|
+
|
73
|
+
# Invalidate the cached Bundler.definition.
|
74
|
+
# This prevents e.g. `bundle remove ...` from using outdated information.
|
75
|
+
Bundler.reset_paths!
|
75
76
|
end
|
76
77
|
|
77
78
|
private
|
@@ -82,7 +83,7 @@ module Bundler
|
|
82
83
|
segments = version.segments
|
83
84
|
seg_end_index = version >= Gem::Version.new("1.0") ? 1 : 2
|
84
85
|
|
85
|
-
prerelease_suffix = version.to_s.
|
86
|
+
prerelease_suffix = version.to_s.delete_prefix(version.release.to_s) if version.prerelease?
|
86
87
|
"#{version_prefix}#{segments[0..seg_end_index].join(".")}#{prerelease_suffix}"
|
87
88
|
end
|
88
89
|
|
@@ -111,10 +112,15 @@ module Bundler
|
|
111
112
|
end
|
112
113
|
|
113
114
|
source = ", :source => \"#{d.source}\"" unless d.source.nil?
|
115
|
+
path = ", :path => \"#{d.path}\"" unless d.path.nil?
|
114
116
|
git = ", :git => \"#{d.git}\"" unless d.git.nil?
|
117
|
+
github = ", :github => \"#{d.github}\"" unless d.github.nil?
|
115
118
|
branch = ", :branch => \"#{d.branch}\"" unless d.branch.nil?
|
119
|
+
ref = ", :ref => \"#{d.ref}\"" unless d.ref.nil?
|
120
|
+
glob = ", :glob => \"#{d.glob}\"" unless d.glob.nil?
|
121
|
+
require_path = ", :require => #{convert_autorequire(d.autorequire)}" unless d.autorequire.nil?
|
116
122
|
|
117
|
-
%(gem #{name}#{requirement}#{group}#{source}#{git}#{branch})
|
123
|
+
%(gem #{name}#{requirement}#{group}#{source}#{path}#{git}#{github}#{branch}#{ref}#{glob}#{require_path})
|
118
124
|
end.join("\n")
|
119
125
|
end
|
120
126
|
|
@@ -178,7 +184,7 @@ module Bundler
|
|
178
184
|
# @param [Array] gems Array of names of gems to be removed.
|
179
185
|
# @param [Pathname] gemfile_path The Gemfile from which to remove dependencies.
|
180
186
|
def remove_gems_from_gemfile(gems, gemfile_path)
|
181
|
-
patterns = /gem\s+(['"])#{Regexp.union(gems)}\1|gem\s*\((['"])#{Regexp.union(gems)}\2
|
187
|
+
patterns = /gem\s+(['"])#{Regexp.union(gems)}\1|gem\s*\((['"])#{Regexp.union(gems)}\2.*\)/
|
182
188
|
new_gemfile = []
|
183
189
|
multiline_removal = false
|
184
190
|
File.readlines(gemfile_path).each do |line|
|
@@ -227,7 +233,7 @@ module Bundler
|
|
227
233
|
|
228
234
|
gemfile.each_with_index do |line, index|
|
229
235
|
next unless !line.nil? && line.strip.start_with?(block_name)
|
230
|
-
if gemfile[index + 1]
|
236
|
+
if /^\s*end\s*$/.match?(gemfile[index + 1])
|
231
237
|
gemfile[index] = nil
|
232
238
|
gemfile[index + 1] = nil
|
233
239
|
end
|
@@ -269,5 +275,11 @@ module Bundler
|
|
269
275
|
def show_warning(message)
|
270
276
|
Bundler.ui.info Bundler.ui.add_color(message, :yellow)
|
271
277
|
end
|
278
|
+
|
279
|
+
def convert_autorequire(autorequire)
|
280
|
+
autorequire = autorequire.first
|
281
|
+
return autorequire if autorequire == "false"
|
282
|
+
autorequire.inspect
|
283
|
+
end
|
272
284
|
end
|
273
285
|
end
|
data/lib/bundler/inline.rb
CHANGED
@@ -1,16 +1,20 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Allows for declaring a Gemfile inline in a ruby script,
|
4
|
-
#
|
3
|
+
# Allows for declaring a Gemfile inline in a ruby script, installing any gems
|
4
|
+
# that aren't already installed on the user's system.
|
5
5
|
#
|
6
6
|
# @note Every gem that is specified in this 'Gemfile' will be `require`d, as if
|
7
7
|
# the user had manually called `Bundler.require`. To avoid a requested gem
|
8
8
|
# being automatically required, add the `:require => false` option to the
|
9
9
|
# `gem` dependency declaration.
|
10
10
|
#
|
11
|
-
# @param
|
12
|
-
#
|
13
|
-
#
|
11
|
+
# @param force_latest_compatible [Boolean] Force installing the *latest*
|
12
|
+
# compatible versions of the gems,
|
13
|
+
# even if compatible versions are
|
14
|
+
# already installed locally.
|
15
|
+
# This also logs output if the
|
16
|
+
# `:quiet` option is not set.
|
17
|
+
# Defaults to `false`.
|
14
18
|
#
|
15
19
|
# @param gemfile [Proc] a block that is evaluated as a `Gemfile`.
|
16
20
|
#
|
@@ -29,53 +33,62 @@
|
|
29
33
|
#
|
30
34
|
# puts Pod::VERSION # => "0.34.4"
|
31
35
|
#
|
32
|
-
def gemfile(
|
36
|
+
def gemfile(force_latest_compatible = false, options = {}, &gemfile)
|
33
37
|
require_relative "../bundler"
|
38
|
+
Bundler.reset!
|
34
39
|
|
35
40
|
opts = options.dup
|
36
41
|
ui = opts.delete(:ui) { Bundler::UI::Shell.new }
|
37
|
-
ui.level = "silent" if opts.delete(:quiet)
|
42
|
+
ui.level = "silent" if opts.delete(:quiet) || !force_latest_compatible
|
43
|
+
Bundler.ui = ui
|
38
44
|
raise ArgumentError, "Unknown options: #{opts.keys.join(", ")}" unless opts.empty?
|
39
45
|
|
46
|
+
old_gemfile = ENV["BUNDLE_GEMFILE"]
|
47
|
+
|
48
|
+
Bundler.unbundle_env!
|
49
|
+
|
40
50
|
begin
|
41
|
-
|
42
|
-
bundler_module = class << Bundler; self; end
|
43
|
-
bundler_module.send(:remove_method, :root)
|
44
|
-
def Bundler.root
|
45
|
-
Bundler::SharedHelpers.pwd.expand_path
|
46
|
-
end
|
47
|
-
old_gemfile = ENV["BUNDLE_GEMFILE"]
|
51
|
+
Bundler.instance_variable_set(:@bundle_path, Pathname.new(Gem.dir))
|
48
52
|
Bundler::SharedHelpers.set_env "BUNDLE_GEMFILE", "Gemfile"
|
49
53
|
|
50
54
|
Bundler::Plugin.gemfile_install(&gemfile) if Bundler.feature_flag.plugins?
|
51
55
|
builder = Bundler::Dsl.new
|
52
56
|
builder.instance_eval(&gemfile)
|
53
|
-
builder.check_primary_source_safety
|
54
57
|
|
55
|
-
Bundler.settings.temporary(:
|
58
|
+
Bundler.settings.temporary(deployment: false, frozen: false) do
|
56
59
|
definition = builder.to_definition(nil, true)
|
57
|
-
def definition.lock(*); end
|
58
60
|
definition.validate_runtime!
|
59
61
|
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
installer = Bundler::Installer.install(Bundler.root, definition, :system => true)
|
62
|
+
if force_latest_compatible || definition.missing_specs?
|
63
|
+
Bundler.settings.temporary(inline: true, no_install: false) do
|
64
|
+
installer = Bundler::Installer.install(Bundler.root, definition, system: true)
|
64
65
|
installer.post_install_messages.each do |name, message|
|
65
66
|
Bundler.ui.info "Post-install message from #{name}:\n#{message}"
|
66
67
|
end
|
67
68
|
end
|
68
69
|
end
|
69
70
|
|
70
|
-
|
71
|
-
|
71
|
+
begin
|
72
|
+
runtime = Bundler::Runtime.new(nil, definition).setup
|
73
|
+
rescue Gem::LoadError => e
|
74
|
+
name = e.name
|
75
|
+
version = e.requirement.requirements.first[1]
|
76
|
+
activated_version = Gem.loaded_specs[name].version
|
77
|
+
|
78
|
+
Bundler.ui.info \
|
79
|
+
"The #{name} gem was resolved to #{version}, but #{activated_version} was activated by Bundler while installing it, causing a conflict. " \
|
80
|
+
"Bundler will now retry resolving with #{activated_version} instead."
|
81
|
+
|
82
|
+
builder.dependencies.delete_if {|d| d.name == name }
|
83
|
+
builder.instance_eval { gem name, activated_version }
|
84
|
+
definition = builder.to_definition(nil, true)
|
85
|
+
|
86
|
+
retry
|
87
|
+
end
|
88
|
+
|
89
|
+
runtime.require
|
72
90
|
end
|
73
91
|
ensure
|
74
|
-
if bundler_module
|
75
|
-
bundler_module.send(:remove_method, :root)
|
76
|
-
bundler_module.send(:define_method, :root, old_root)
|
77
|
-
end
|
78
|
-
|
79
92
|
if old_gemfile
|
80
93
|
ENV["BUNDLE_GEMFILE"] = old_gemfile
|
81
94
|
else
|
@@ -2,27 +2,28 @@
|
|
2
2
|
|
3
3
|
module Bundler
|
4
4
|
class GemInstaller
|
5
|
-
attr_reader :spec, :standalone, :worker, :force, :installer
|
5
|
+
attr_reader :spec, :standalone, :worker, :force, :local, :installer
|
6
6
|
|
7
|
-
def initialize(spec, installer, standalone = false, worker = 0, force = false)
|
7
|
+
def initialize(spec, installer, standalone = false, worker = 0, force = false, local = false)
|
8
8
|
@spec = spec
|
9
9
|
@installer = installer
|
10
10
|
@standalone = standalone
|
11
11
|
@worker = worker
|
12
12
|
@force = force
|
13
|
+
@local = local
|
13
14
|
end
|
14
15
|
|
15
16
|
def install_from_spec
|
16
|
-
post_install_message =
|
17
|
+
post_install_message = install
|
17
18
|
Bundler.ui.debug "#{worker}: #{spec.name} (#{spec.version}) from #{spec.loaded_from}"
|
18
19
|
generate_executable_stubs
|
19
|
-
|
20
|
-
rescue Bundler::InstallHookError, Bundler::SecurityError, Bundler::APIResponseMismatchError
|
20
|
+
[true, post_install_message]
|
21
|
+
rescue Bundler::InstallHookError, Bundler::SecurityError, Bundler::APIResponseMismatchError, Bundler::InsecureInstallPathError
|
21
22
|
raise
|
22
23
|
rescue Errno::ENOSPC
|
23
|
-
|
24
|
-
rescue Bundler::BundlerError, Gem::InstallError
|
25
|
-
|
24
|
+
[false, out_of_space_message]
|
25
|
+
rescue Bundler::BundlerError, Gem::InstallError => e
|
26
|
+
[false, specific_failure_message(e)]
|
26
27
|
end
|
27
28
|
|
28
29
|
private
|
@@ -51,12 +52,20 @@ module Bundler
|
|
51
52
|
end
|
52
53
|
|
53
54
|
def install
|
54
|
-
spec.source.install(
|
55
|
+
spec.source.install(
|
56
|
+
spec,
|
57
|
+
force: force,
|
58
|
+
local: local,
|
59
|
+
build_args: Array(spec_settings),
|
60
|
+
previous_spec: previous_spec,
|
61
|
+
)
|
55
62
|
end
|
56
63
|
|
57
|
-
def
|
58
|
-
|
59
|
-
|
64
|
+
def previous_spec
|
65
|
+
locked_gems = installer.definition.locked_gems
|
66
|
+
return unless locked_gems
|
67
|
+
|
68
|
+
locked_gems.specs.find {|s| s.name == spec.name }
|
60
69
|
end
|
61
70
|
|
62
71
|
def out_of_space_message
|
@@ -69,7 +78,7 @@ module Bundler
|
|
69
78
|
if Bundler.settings[:bin] && standalone
|
70
79
|
installer.generate_standalone_bundler_executable_stubs(spec)
|
71
80
|
elsif Bundler.settings[:bin]
|
72
|
-
installer.generate_bundler_executable_stubs(spec, :
|
81
|
+
installer.generate_bundler_executable_stubs(spec, force: true)
|
73
82
|
end
|
74
83
|
end
|
75
84
|
end
|
@@ -42,8 +42,7 @@ module Bundler
|
|
42
42
|
|
43
43
|
# Checks installed dependencies against spec's dependencies to make
|
44
44
|
# sure needed dependencies have been installed.
|
45
|
-
def dependencies_installed?(
|
46
|
-
installed_specs = all_specs.select(&:installed?).map(&:name)
|
45
|
+
def dependencies_installed?(installed_specs)
|
47
46
|
dependencies.all? {|d| installed_specs.include? d.name }
|
48
47
|
end
|
49
48
|
|
@@ -53,10 +52,6 @@ module Bundler
|
|
53
52
|
@dependencies ||= all_dependencies.reject {|dep| ignorable_dependency? dep }
|
54
53
|
end
|
55
54
|
|
56
|
-
def missing_lockfile_dependencies(all_spec_names)
|
57
|
-
dependencies.reject {|dep| all_spec_names.include? dep.name }
|
58
|
-
end
|
59
|
-
|
60
55
|
# Represents all dependencies
|
61
56
|
def all_dependencies
|
62
57
|
@spec.dependencies
|
@@ -67,25 +62,27 @@ module Bundler
|
|
67
62
|
end
|
68
63
|
end
|
69
64
|
|
70
|
-
def self.call(*args)
|
71
|
-
new(*args).call
|
65
|
+
def self.call(*args, **kwargs)
|
66
|
+
new(*args, **kwargs).call
|
72
67
|
end
|
73
68
|
|
74
69
|
attr_reader :size
|
75
70
|
|
76
|
-
def initialize(installer, all_specs, size, standalone, force)
|
71
|
+
def initialize(installer, all_specs, size, standalone, force, local: false, skip: nil)
|
77
72
|
@installer = installer
|
78
73
|
@size = size
|
79
74
|
@standalone = standalone
|
80
75
|
@force = force
|
76
|
+
@local = local
|
81
77
|
@specs = all_specs.map {|s| SpecInstallation.new(s) }
|
78
|
+
@specs.each do |spec_install|
|
79
|
+
spec_install.state = :installed if skip.include?(spec_install.name)
|
80
|
+
end if skip
|
82
81
|
@spec_set = all_specs
|
83
|
-
@rake = @specs.find {|s| s.name == "rake" }
|
82
|
+
@rake = @specs.find {|s| s.name == "rake" unless s.installed? }
|
84
83
|
end
|
85
84
|
|
86
85
|
def call
|
87
|
-
check_for_corrupt_lockfile
|
88
|
-
|
89
86
|
if @rake
|
90
87
|
do_install(@rake, 0)
|
91
88
|
Gem::Specification.reset
|
@@ -97,60 +94,10 @@ module Bundler
|
|
97
94
|
install_serially
|
98
95
|
end
|
99
96
|
|
100
|
-
check_for_unmet_dependencies
|
101
|
-
|
102
97
|
handle_error if failed_specs.any?
|
103
98
|
@specs
|
104
99
|
ensure
|
105
|
-
worker_pool
|
106
|
-
end
|
107
|
-
|
108
|
-
def check_for_unmet_dependencies
|
109
|
-
unmet_dependencies = @specs.map do |s|
|
110
|
-
[
|
111
|
-
s,
|
112
|
-
s.dependencies.reject {|dep| @specs.any? {|spec| dep.matches_spec?(spec.spec) } },
|
113
|
-
]
|
114
|
-
end.reject {|a| a.last.empty? }
|
115
|
-
return if unmet_dependencies.empty?
|
116
|
-
|
117
|
-
warning = []
|
118
|
-
warning << "Your lockfile doesn't include a valid resolution."
|
119
|
-
warning << "You can fix this by regenerating your lockfile or trying to manually editing the bad locked gems to a version that satisfies all dependencies."
|
120
|
-
warning << "The unmet dependencies are:"
|
121
|
-
|
122
|
-
unmet_dependencies.each do |spec, unmet_spec_dependencies|
|
123
|
-
unmet_spec_dependencies.each do |unmet_spec_dependency|
|
124
|
-
warning << "* #{unmet_spec_dependency}, depended upon #{spec.full_name}, unsatisfied by #{@specs.find {|s| s.name == unmet_spec_dependency.name && !unmet_spec_dependency.matches_spec?(s.spec) }.full_name}"
|
125
|
-
end
|
126
|
-
end
|
127
|
-
|
128
|
-
Bundler.ui.warn(warning.join("\n"))
|
129
|
-
end
|
130
|
-
|
131
|
-
def check_for_corrupt_lockfile
|
132
|
-
missing_dependencies = @specs.map do |s|
|
133
|
-
[
|
134
|
-
s,
|
135
|
-
s.missing_lockfile_dependencies(@specs.map(&:name)),
|
136
|
-
]
|
137
|
-
end.reject {|a| a.last.empty? }
|
138
|
-
return if missing_dependencies.empty?
|
139
|
-
|
140
|
-
warning = []
|
141
|
-
warning << "Your lockfile was created by an old Bundler that left some things out."
|
142
|
-
if @size != 1
|
143
|
-
warning << "Because of the missing DEPENDENCIES, we can only install gems one at a time, instead of installing #{@size} at a time."
|
144
|
-
@size = 1
|
145
|
-
end
|
146
|
-
warning << "You can fix this by adding the missing gems to your Gemfile, running bundle install, and then removing the gems from your Gemfile."
|
147
|
-
warning << "The missing gems are:"
|
148
|
-
|
149
|
-
missing_dependencies.each do |spec, missing|
|
150
|
-
warning << "* #{missing.map(&:name).join(", ")} depended upon by #{spec.name}"
|
151
|
-
end
|
152
|
-
|
153
|
-
Bundler.ui.warn(warning.join("\n"))
|
100
|
+
worker_pool&.stop
|
154
101
|
end
|
155
102
|
|
156
103
|
private
|
@@ -181,7 +128,7 @@ module Bundler
|
|
181
128
|
def do_install(spec_install, worker_num)
|
182
129
|
Plugin.hook(Plugin::Events::GEM_BEFORE_INSTALL, spec_install)
|
183
130
|
gem_installer = Bundler::GemInstaller.new(
|
184
|
-
spec_install.spec, @installer, @standalone, worker_num, @force
|
131
|
+
spec_install.spec, @installer, @standalone, worker_num, @force, @local
|
185
132
|
)
|
186
133
|
success, message = gem_installer.install_from_spec
|
187
134
|
if success
|
@@ -239,8 +186,14 @@ module Bundler
|
|
239
186
|
# previously installed specifications. We continue until all specs
|
240
187
|
# are installed.
|
241
188
|
def enqueue_specs
|
242
|
-
|
243
|
-
|
189
|
+
installed_specs = {}
|
190
|
+
@specs.each do |spec|
|
191
|
+
next unless spec.installed?
|
192
|
+
installed_specs[spec.name] = true
|
193
|
+
end
|
194
|
+
|
195
|
+
@specs.each do |spec|
|
196
|
+
if spec.ready_to_enqueue? && spec.dependencies_installed?(installed_specs)
|
244
197
|
spec.state = :enqueued
|
245
198
|
worker_pool.enq spec
|
246
199
|
end
|