rubygems-update 3.0.6 → 3.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/{History.txt → CHANGELOG.md} +1100 -436
- data/CODE_OF_CONDUCT.md +55 -19
- data/CONTRIBUTING.md +37 -10
- data/MAINTAINERS.txt +1 -6
- data/Manifest.txt +104 -64
- data/POLICIES.md +6 -12
- data/README.md +6 -6
- data/Rakefile +121 -111
- data/bin/gem +0 -6
- data/bin/update_rubygems +2 -2
- data/bundler/CHANGELOG.md +1788 -1251
- data/bundler/LICENSE.md +18 -19
- data/bundler/README.md +9 -10
- data/bundler/UPGRADING.md +215 -0
- data/bundler/bundler.gemspec +9 -26
- data/bundler/exe/bundle +22 -3
- data/bundler/lib/bundler.rb +233 -94
- data/bundler/lib/bundler/build_metadata.rb +5 -13
- data/bundler/lib/bundler/capistrano.rb +4 -4
- data/bundler/lib/bundler/cli.rb +221 -148
- data/bundler/lib/bundler/cli/add.rb +28 -16
- data/bundler/lib/bundler/cli/binstubs.rb +6 -2
- data/bundler/lib/bundler/cli/cache.rb +24 -17
- data/bundler/lib/bundler/cli/clean.rb +1 -1
- data/bundler/lib/bundler/cli/common.rb +25 -12
- data/bundler/lib/bundler/cli/config.rb +161 -86
- data/bundler/lib/bundler/cli/console.rb +1 -1
- data/bundler/lib/bundler/cli/doctor.rb +5 -5
- data/bundler/lib/bundler/cli/exec.rb +8 -20
- data/bundler/lib/bundler/cli/fund.rb +36 -0
- data/bundler/lib/bundler/cli/gem.rb +125 -32
- data/bundler/lib/bundler/cli/info.rb +29 -6
- data/bundler/lib/bundler/cli/init.rb +2 -2
- data/bundler/lib/bundler/cli/inject.rb +1 -1
- data/bundler/lib/bundler/cli/install.rb +27 -23
- data/bundler/lib/bundler/cli/issue.rb +5 -5
- data/bundler/lib/bundler/cli/list.rb +12 -10
- data/bundler/lib/bundler/cli/open.rb +10 -6
- data/bundler/lib/bundler/cli/outdated.rb +134 -109
- data/bundler/lib/bundler/cli/plugin.rb +19 -2
- data/bundler/lib/bundler/cli/pristine.rb +6 -1
- data/bundler/lib/bundler/cli/show.rb +2 -2
- data/bundler/lib/bundler/cli/update.rb +34 -12
- data/bundler/lib/bundler/compact_index_client.rb +26 -10
- data/bundler/lib/bundler/compact_index_client/cache.rb +6 -14
- data/bundler/lib/bundler/compact_index_client/gem_parser.rb +28 -0
- data/bundler/lib/bundler/compact_index_client/updater.rb +8 -20
- data/bundler/lib/bundler/current_ruby.rb +9 -7
- data/bundler/lib/bundler/definition.rb +133 -132
- data/bundler/lib/bundler/dep_proxy.rb +16 -9
- data/bundler/lib/bundler/dependency.rb +19 -14
- data/bundler/lib/bundler/deployment.rb +1 -1
- data/bundler/lib/bundler/dsl.rb +54 -71
- data/bundler/lib/bundler/endpoint_specification.rb +1 -1
- data/bundler/lib/bundler/env.rb +9 -14
- data/bundler/lib/bundler/environment_preserver.rb +26 -3
- data/bundler/lib/bundler/errors.rb +1 -0
- data/bundler/lib/bundler/feature_flag.rb +19 -34
- data/bundler/lib/bundler/fetcher.rb +19 -16
- data/bundler/lib/bundler/fetcher/base.rb +1 -1
- data/bundler/lib/bundler/fetcher/compact_index.rb +27 -13
- data/bundler/lib/bundler/fetcher/dependency.rb +1 -1
- data/bundler/lib/bundler/fetcher/downloader.rb +6 -3
- data/bundler/lib/bundler/fetcher/index.rb +8 -7
- data/bundler/lib/bundler/friendly_errors.rb +27 -19
- data/bundler/lib/bundler/gem_helper.rb +68 -37
- data/bundler/lib/bundler/gem_helpers.rb +38 -29
- data/bundler/lib/bundler/gem_tasks.rb +1 -1
- data/bundler/lib/bundler/gem_version_promoter.rb +5 -5
- data/bundler/lib/bundler/graph.rb +3 -3
- data/bundler/lib/bundler/index.rb +12 -7
- data/bundler/lib/bundler/injector.rb +32 -12
- data/bundler/lib/bundler/inline.rb +41 -30
- data/bundler/lib/bundler/installer.rb +41 -60
- data/bundler/lib/bundler/installer/gem_installer.rb +8 -4
- data/bundler/lib/bundler/installer/parallel_installer.rb +20 -26
- data/bundler/lib/bundler/installer/standalone.rb +18 -4
- data/bundler/lib/bundler/lazy_specification.rb +41 -27
- data/bundler/lib/bundler/lockfile_generator.rb +1 -1
- data/bundler/lib/bundler/lockfile_parser.rb +16 -33
- data/bundler/lib/bundler/{ssl_certs → man}/.document +0 -0
- data/bundler/lib/bundler/man/bundle-add.1 +66 -0
- data/bundler/{man/bundle-add.ronn → lib/bundler/man/bundle-add.1.ronn} +7 -1
- data/bundler/lib/bundler/man/bundle-binstubs.1 +42 -0
- data/bundler/{man/bundle-binstubs.ronn → lib/bundler/man/bundle-binstubs.1.ronn} +3 -5
- data/bundler/lib/bundler/man/bundle-cache.1 +55 -0
- data/bundler/{man/bundle-package.ronn → lib/bundler/man/bundle-cache.1.ronn} +15 -15
- data/bundler/lib/bundler/man/bundle-check.1 +31 -0
- data/bundler/{man/bundle-check.ronn → lib/bundler/man/bundle-check.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-clean.1 +24 -0
- data/bundler/{man/bundle-clean.ronn → lib/bundler/man/bundle-clean.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-config.1 +488 -0
- data/bundler/{man/bundle-config.ronn → lib/bundler/man/bundle-config.1.ronn} +59 -67
- data/bundler/lib/bundler/man/bundle-doctor.1 +44 -0
- data/bundler/{man/bundle-doctor.ronn → lib/bundler/man/bundle-doctor.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-exec.1 +165 -0
- data/bundler/{man/bundle-exec.ronn → lib/bundler/man/bundle-exec.1.ronn} +1 -1
- data/bundler/lib/bundler/man/bundle-gem.1 +102 -0
- data/bundler/{man/bundle-gem.ronn → lib/bundler/man/bundle-gem.1.ronn} +30 -7
- data/bundler/lib/bundler/man/bundle-info.1 +20 -0
- data/bundler/{man/bundle-info.ronn → lib/bundler/man/bundle-info.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-init.1 +25 -0
- data/bundler/{man/bundle-init.ronn → lib/bundler/man/bundle-init.1.ronn} +1 -1
- data/bundler/lib/bundler/man/bundle-inject.1 +33 -0
- data/bundler/{man/bundle-inject.ronn → lib/bundler/man/bundle-inject.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-install.1 +338 -0
- data/bundler/{man/bundle-install.ronn → lib/bundler/man/bundle-install.1.ronn} +34 -7
- data/bundler/lib/bundler/man/bundle-list.1 +50 -0
- data/bundler/{man/bundle-list.ronn → lib/bundler/man/bundle-list.1.ronn} +6 -6
- data/bundler/lib/bundler/man/bundle-lock.1 +84 -0
- data/bundler/{man/bundle-lock.ronn → lib/bundler/man/bundle-lock.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-open.1 +32 -0
- data/bundler/{man/bundle-open.ronn → lib/bundler/man/bundle-open.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-outdated.1 +155 -0
- data/bundler/{man/bundle-outdated.ronn → lib/bundler/man/bundle-outdated.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-platform.1 +61 -0
- data/bundler/{man/bundle-platform.ronn → lib/bundler/man/bundle-platform.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-pristine.1 +34 -0
- data/bundler/{man/bundle-pristine.ronn → lib/bundler/man/bundle-pristine.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-remove.1 +31 -0
- data/bundler/{man/bundle-remove.ronn → lib/bundler/man/bundle-remove.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-show.1 +23 -0
- data/bundler/{man/bundle-show.ronn → lib/bundler/man/bundle-show.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle-update.1 +394 -0
- data/bundler/{man/bundle-update.ronn → lib/bundler/man/bundle-update.1.ronn} +3 -3
- data/bundler/lib/bundler/man/bundle-viz.1 +39 -0
- data/bundler/{man/bundle-viz.ronn → lib/bundler/man/bundle-viz.1.ronn} +0 -0
- data/bundler/lib/bundler/man/bundle.1 +136 -0
- data/bundler/{man/bundle.ronn → lib/bundler/man/bundle.1.ronn} +2 -2
- data/bundler/lib/bundler/man/gemfile.5 +686 -0
- data/bundler/{man → lib/bundler/man}/gemfile.5.ronn +16 -20
- data/bundler/lib/bundler/man/index.txt +25 -0
- data/bundler/lib/bundler/match_platform.rb +1 -1
- data/bundler/lib/bundler/mirror.rb +5 -5
- data/bundler/lib/bundler/plugin.rb +75 -36
- data/bundler/lib/bundler/plugin/api.rb +1 -1
- data/bundler/lib/bundler/plugin/api/source.rb +12 -7
- data/bundler/lib/bundler/plugin/dsl.rb +1 -1
- data/bundler/lib/bundler/plugin/index.rb +24 -4
- data/bundler/lib/bundler/plugin/installer.rb +33 -22
- data/bundler/lib/bundler/plugin/installer/rubygems.rb +1 -1
- data/bundler/lib/bundler/plugin/source_list.rb +5 -1
- data/bundler/lib/bundler/psyched_yaml.rb +0 -15
- data/bundler/lib/bundler/remote_specification.rb +5 -4
- data/bundler/lib/bundler/resolver.rb +191 -87
- data/bundler/lib/bundler/resolver/spec_group.rb +76 -48
- data/bundler/lib/bundler/retry.rb +3 -3
- data/bundler/lib/bundler/ruby_version.rb +5 -20
- data/bundler/lib/bundler/rubygems_ext.rb +76 -72
- data/bundler/lib/bundler/rubygems_gem_installer.rb +47 -13
- data/bundler/lib/bundler/rubygems_integration.rb +159 -444
- data/bundler/lib/bundler/runtime.rb +6 -23
- data/bundler/lib/bundler/settings.rb +67 -93
- data/bundler/lib/bundler/setup.rb +11 -12
- data/bundler/lib/bundler/shared_helpers.rb +54 -80
- data/bundler/lib/bundler/similarity_detector.rb +3 -3
- data/bundler/lib/bundler/source.rb +12 -6
- data/bundler/lib/bundler/source/git.rb +47 -38
- data/bundler/lib/bundler/source/git/git_proxy.rb +101 -102
- data/bundler/lib/bundler/source/metadata.rb +7 -6
- data/bundler/lib/bundler/source/path.rb +20 -11
- data/bundler/lib/bundler/source/path/installer.rb +10 -10
- data/bundler/lib/bundler/source/rubygems.rb +56 -29
- data/bundler/lib/bundler/source/rubygems/remote.rb +3 -4
- data/bundler/lib/bundler/source_list.rb +32 -30
- data/bundler/lib/bundler/spec_set.rb +37 -25
- data/bundler/lib/bundler/stub_specification.rb +40 -34
- data/bundler/lib/bundler/templates/Executable.bundler +23 -14
- data/bundler/lib/bundler/templates/newgem/CHANGELOG.md.tt +5 -0
- data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
- data/bundler/lib/bundler/templates/newgem/Gemfile.tt +16 -2
- data/bundler/lib/bundler/templates/newgem/README.md.tt +7 -5
- data/bundler/lib/bundler/templates/newgem/Rakefile.tt +19 -5
- data/bundler/lib/bundler/templates/newgem/bin/console.tt +1 -0
- data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
- data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
- data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
- data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +4 -2
- data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
- data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +18 -31
- data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +13 -0
- data/bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
- data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -1
- data/bundler/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
- data/bundler/lib/bundler/templates/newgem/test/minitest/test_helper.rb.tt +6 -0
- data/bundler/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
- data/bundler/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
- data/bundler/lib/bundler/templates/newgem/travis.yml.tt +0 -1
- data/bundler/lib/bundler/ui.rb +3 -3
- data/bundler/lib/bundler/ui/rg_proxy.rb +1 -1
- data/bundler/lib/bundler/ui/shell.rb +7 -11
- data/bundler/lib/bundler/uri_credentials_filter.rb +10 -4
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +161 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb +66 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +176 -0
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +3 -0
- data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +273 -147
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo.rb +5 -6
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +7 -0
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +36 -4
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +6 -6
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +3 -3
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +39 -11
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +4 -4
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +11 -0
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +53 -51
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +2 -2
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +302 -462
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +40 -0
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +53 -0
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +79 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor.rb +16 -9
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions.rb +28 -13
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +3 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +7 -17
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +20 -9
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +19 -8
- data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +63 -43
- data/bundler/lib/bundler/vendor/thor/lib/thor/command.rb +21 -14
- data/bundler/lib/bundler/vendor/thor/lib/thor/error.rb +78 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/group.rb +3 -3
- data/bundler/lib/bundler/vendor/thor/lib/thor/invocation.rb +1 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor.rb +2 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +6 -6
- data/bundler/lib/bundler/vendor/thor/lib/thor/nested_context.rb +29 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -4
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +7 -3
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/option.rb +20 -7
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +21 -5
- data/bundler/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +1 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/runner.rb +15 -14
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell.rb +4 -4
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +65 -8
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/color.rb +10 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/html.rb +3 -3
- data/bundler/lib/bundler/vendor/thor/lib/thor/util.rb +18 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/bundler/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +154 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri.rb +104 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +744 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/file.rb +94 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb +267 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +1568 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +88 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/https.rb +23 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/ldap.rb +261 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/ldaps.rb +21 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/mailto.rb +294 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +546 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +125 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +6 -0
- data/bundler/lib/bundler/vendored_fileutils.rb +1 -6
- data/bundler/lib/bundler/vendored_molinillo.rb +1 -1
- data/bundler/lib/bundler/vendored_persistent.rb +7 -12
- data/bundler/lib/bundler/vendored_thor.rb +2 -2
- data/bundler/lib/bundler/vendored_tmpdir.rb +4 -0
- data/bundler/lib/bundler/vendored_uri.rb +4 -0
- data/bundler/lib/bundler/version.rb +1 -20
- data/bundler/lib/bundler/version_ranges.rb +51 -5
- data/bundler/lib/bundler/vlad.rb +2 -2
- data/bundler/lib/bundler/worker.rb +2 -4
- data/bundler/lib/bundler/yaml_serializer.rb +3 -4
- data/lib/rubygems.rb +198 -222
- data/lib/rubygems/available_set.rb +4 -5
- data/lib/rubygems/basic_specification.rb +32 -19
- data/lib/rubygems/bundler_version_finder.rb +19 -9
- data/lib/rubygems/command.rb +73 -21
- data/lib/rubygems/command_manager.rb +5 -12
- data/lib/rubygems/commands/build_command.rb +51 -18
- data/lib/rubygems/commands/cert_command.rb +2 -11
- data/lib/rubygems/commands/check_command.rb +0 -2
- data/lib/rubygems/commands/cleanup_command.rb +17 -13
- data/lib/rubygems/commands/contents_command.rb +7 -9
- data/lib/rubygems/commands/dependency_command.rb +9 -10
- data/lib/rubygems/commands/environment_command.rb +1 -6
- data/lib/rubygems/commands/fetch_command.rb +2 -4
- data/lib/rubygems/commands/generate_index_command.rb +3 -2
- data/lib/rubygems/commands/help_command.rb +4 -4
- data/lib/rubygems/commands/info_command.rb +9 -4
- data/lib/rubygems/commands/install_command.rb +12 -54
- data/lib/rubygems/commands/list_command.rb +8 -7
- data/lib/rubygems/commands/lock_command.rb +3 -5
- data/lib/rubygems/commands/mirror_command.rb +0 -1
- data/lib/rubygems/commands/open_command.rb +1 -4
- data/lib/rubygems/commands/outdated_command.rb +0 -1
- data/lib/rubygems/commands/owner_command.rb +10 -10
- data/lib/rubygems/commands/pristine_command.rb +13 -9
- data/lib/rubygems/commands/push_command.rb +12 -51
- data/lib/rubygems/commands/query_command.rb +14 -330
- data/lib/rubygems/commands/rdoc_command.rb +0 -1
- data/lib/rubygems/commands/search_command.rb +7 -7
- data/lib/rubygems/commands/server_command.rb +3 -1
- data/lib/rubygems/commands/setup_command.rb +143 -101
- data/lib/rubygems/commands/signin_command.rb +0 -1
- data/lib/rubygems/commands/signout_command.rb +0 -2
- data/lib/rubygems/commands/sources_command.rb +22 -6
- data/lib/rubygems/commands/specification_command.rb +8 -3
- data/lib/rubygems/commands/stale_command.rb +1 -1
- data/lib/rubygems/commands/uninstall_command.rb +2 -3
- data/lib/rubygems/commands/unpack_command.rb +3 -32
- data/lib/rubygems/commands/update_command.rb +73 -28
- data/lib/rubygems/commands/which_command.rb +0 -1
- data/lib/rubygems/commands/yank_command.rb +10 -7
- data/lib/rubygems/compatibility.rb +4 -4
- data/lib/rubygems/config_file.rb +48 -27
- data/lib/rubygems/core_ext/kernel_gem.rb +7 -6
- data/lib/rubygems/core_ext/kernel_require.rb +44 -6
- data/lib/rubygems/core_ext/kernel_warn.rb +22 -13
- data/lib/rubygems/core_ext/tcpsocket_init.rb +52 -0
- data/lib/rubygems/defaults.rb +110 -23
- data/lib/rubygems/dependency.rb +28 -14
- data/lib/rubygems/dependency_installer.rb +11 -166
- data/lib/rubygems/dependency_list.rb +17 -18
- data/lib/rubygems/deprecate.rb +51 -6
- data/lib/rubygems/doctor.rb +4 -4
- data/lib/rubygems/errors.rb +5 -7
- data/lib/rubygems/exceptions.rb +2 -24
- data/lib/rubygems/ext.rb +6 -6
- data/lib/rubygems/ext/build_error.rb +2 -0
- data/lib/rubygems/ext/builder.rb +45 -82
- data/lib/rubygems/ext/cmake_builder.rb +6 -7
- data/lib/rubygems/ext/configure_builder.rb +5 -8
- data/lib/rubygems/ext/ext_conf_builder.rb +27 -23
- data/lib/rubygems/ext/rake_builder.rb +4 -6
- data/lib/rubygems/gem_runner.rb +3 -10
- data/lib/rubygems/gemcutter_utilities.rb +111 -37
- data/lib/rubygems/indexer.rb +9 -26
- data/lib/rubygems/install_update_options.rb +7 -7
- data/lib/rubygems/installer.rb +91 -98
- data/lib/rubygems/installer_test_case.rb +104 -42
- data/lib/rubygems/installer_uninstaller_utils.rb +29 -0
- data/lib/rubygems/local_remote_options.rb +1 -1
- data/lib/rubygems/mock_gem_ui.rb +1 -4
- data/lib/rubygems/name_tuple.rb +4 -7
- data/lib/rubygems/openssl.rb +7 -0
- data/lib/rubygems/package.rb +49 -32
- data/lib/rubygems/package/digest_io.rb +0 -2
- data/lib/rubygems/package/file_source.rb +0 -2
- data/lib/rubygems/package/io_source.rb +0 -2
- data/lib/rubygems/package/old.rb +1 -3
- data/lib/rubygems/package/tar_header.rb +4 -6
- data/lib/rubygems/package/tar_reader.rb +15 -12
- data/lib/rubygems/package/tar_reader/entry.rb +0 -3
- data/lib/rubygems/package/tar_test_case.rb +2 -4
- data/lib/rubygems/package/tar_writer.rb +6 -16
- data/lib/rubygems/package_task.rb +1 -7
- data/lib/rubygems/path_support.rb +2 -2
- data/lib/rubygems/platform.rb +22 -16
- data/lib/rubygems/query_utils.rb +353 -0
- data/lib/rubygems/rdoc.rb +0 -12
- data/lib/rubygems/remote_fetcher.rb +33 -59
- data/lib/rubygems/request.rb +11 -14
- data/lib/rubygems/request/connection_pools.rb +3 -7
- data/lib/rubygems/request/http_pool.rb +0 -1
- data/lib/rubygems/request_set.rb +10 -23
- data/lib/rubygems/request_set/gem_dependency_api.rb +9 -11
- data/lib/rubygems/request_set/lockfile.rb +13 -12
- data/lib/rubygems/request_set/lockfile/parser.rb +2 -2
- data/lib/rubygems/request_set/lockfile/tokenizer.rb +1 -1
- data/lib/rubygems/requirement.rb +36 -35
- data/lib/rubygems/resolver.rb +20 -16
- data/lib/rubygems/resolver/activation_request.rb +27 -51
- data/lib/rubygems/resolver/api_set.rb +31 -24
- data/lib/rubygems/resolver/api_set/gem_parser.rb +20 -0
- data/lib/rubygems/resolver/api_specification.rb +24 -10
- data/lib/rubygems/resolver/best_set.rb +4 -6
- data/lib/rubygems/resolver/composed_set.rb +3 -5
- data/lib/rubygems/resolver/conflict.rb +2 -9
- data/lib/rubygems/resolver/current_set.rb +0 -2
- data/lib/rubygems/resolver/dependency_request.rb +1 -3
- data/lib/rubygems/resolver/git_set.rb +0 -2
- data/lib/rubygems/resolver/git_specification.rb +0 -2
- data/lib/rubygems/resolver/index_set.rb +1 -3
- data/lib/rubygems/resolver/index_specification.rb +32 -2
- data/lib/rubygems/resolver/installed_specification.rb +0 -2
- data/lib/rubygems/resolver/installer_set.rb +63 -16
- data/lib/rubygems/resolver/local_specification.rb +0 -2
- data/lib/rubygems/resolver/lock_set.rb +3 -5
- data/lib/rubygems/resolver/lock_specification.rb +2 -4
- data/lib/rubygems/resolver/molinillo/lib/molinillo.rb +6 -5
- data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +7 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb +8 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +39 -6
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb +1 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb +7 -6
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb +4 -3
- data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +51 -12
- data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +76 -8
- data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +2 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb +12 -0
- data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb +3 -1
- data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +510 -165
- data/lib/rubygems/resolver/molinillo/lib/molinillo/resolver.rb +3 -2
- data/lib/rubygems/resolver/molinillo/lib/molinillo/state.rb +8 -4
- data/lib/rubygems/resolver/requirement_list.rb +0 -1
- data/lib/rubygems/resolver/set.rb +0 -2
- data/lib/rubygems/resolver/source_set.rb +0 -2
- data/lib/rubygems/resolver/spec_specification.rb +14 -2
- data/lib/rubygems/resolver/specification.rb +13 -2
- data/lib/rubygems/resolver/vendor_set.rb +0 -2
- data/lib/rubygems/resolver/vendor_specification.rb +0 -2
- data/lib/rubygems/s3_uri_signer.rb +15 -13
- data/lib/rubygems/safe_yaml.rb +4 -4
- data/lib/rubygems/security.rb +27 -34
- data/lib/rubygems/security/policy.rb +4 -8
- data/lib/rubygems/security/signer.rb +8 -9
- data/lib/rubygems/security/trust_dir.rb +1 -3
- data/lib/rubygems/server.rb +20 -16
- data/lib/rubygems/source.rb +30 -13
- data/lib/rubygems/source/git.rb +7 -8
- data/lib/rubygems/source/installed.rb +0 -2
- data/lib/rubygems/source/local.rb +2 -4
- data/lib/rubygems/source/lock.rb +0 -2
- data/lib/rubygems/source/specific_file.rb +0 -2
- data/lib/rubygems/source/vendor.rb +0 -2
- data/lib/rubygems/source_list.rb +6 -6
- data/lib/rubygems/spec_fetcher.rb +22 -34
- data/lib/rubygems/specification.rb +207 -278
- data/lib/rubygems/specification_policy.rb +135 -57
- data/{bundler/lib/bundler/ssl_certs/index.rubygems.org → lib/rubygems/ssl_certs/rubygems.org}/GlobalSignRootCA.pem +0 -0
- data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem +21 -0
- data/lib/rubygems/stub_specification.rb +4 -5
- data/lib/rubygems/test_case.rb +221 -341
- data/lib/rubygems/test_utilities.rb +22 -18
- data/lib/rubygems/text.rb +2 -3
- data/lib/rubygems/uninstaller.rb +49 -30
- data/lib/rubygems/uri_formatter.rb +2 -4
- data/lib/rubygems/uri_parser.rb +34 -0
- data/lib/rubygems/uri_parsing.rb +23 -0
- data/lib/rubygems/user_interaction.rb +3 -20
- data/lib/rubygems/util.rb +20 -44
- data/lib/rubygems/util/licenses.rb +400 -400
- data/lib/rubygems/validator.rb +9 -31
- data/lib/rubygems/version.rb +29 -21
- data/lib/rubygems/version_option.rb +6 -0
- data/rubygems-update.gemspec +4 -11
- data/setup.rb +2 -7
- data/test/rubygems/data/null-required-ruby-version.gemspec.rz +0 -0
- data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
- data/test/rubygems/rubygems/commands/crash_command.rb +0 -2
- data/test/rubygems/rubygems_plugin.rb +0 -2
- data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -2
- data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +12 -0
- data/test/rubygems/test_bundled_ca.rb +42 -45
- data/test/rubygems/test_config.rb +0 -2
- data/test/rubygems/test_deprecate.rb +41 -5
- data/test/rubygems/test_gem.rb +405 -236
- data/test/rubygems/test_gem_available_set.rb +5 -6
- data/test/rubygems/test_gem_bundler_version_finder.rb +20 -2
- data/test/rubygems/test_gem_command.rb +144 -9
- data/test/rubygems/test_gem_command_manager.rb +40 -17
- data/test/rubygems/test_gem_commands_build_command.rb +386 -13
- data/test/rubygems/test_gem_commands_cert_command.rb +18 -6
- data/test/rubygems/test_gem_commands_check_command.rb +0 -2
- data/test/rubygems/test_gem_commands_cleanup_command.rb +35 -10
- data/test/rubygems/test_gem_commands_contents_command.rb +50 -19
- data/test/rubygems/test_gem_commands_dependency_command.rb +1 -3
- data/test/rubygems/test_gem_commands_environment_command.rb +21 -33
- data/test/rubygems/test_gem_commands_fetch_command.rb +0 -2
- data/test/rubygems/test_gem_commands_generate_index_command.rb +32 -2
- data/test/rubygems/test_gem_commands_help_command.rb +16 -8
- data/test/rubygems/test_gem_commands_info_command.rb +6 -7
- data/test/rubygems/test_gem_commands_install_command.rb +368 -34
- data/test/rubygems/test_gem_commands_list_command.rb +0 -2
- data/test/rubygems/test_gem_commands_lock_command.rb +0 -2
- data/test/rubygems/test_gem_commands_mirror.rb +1 -2
- data/test/rubygems/test_gem_commands_open_command.rb +4 -6
- data/test/rubygems/test_gem_commands_outdated_command.rb +18 -1
- data/test/rubygems/test_gem_commands_owner_command.rb +62 -9
- data/test/rubygems/test_gem_commands_pristine_command.rb +148 -16
- data/test/rubygems/test_gem_commands_push_command.rb +94 -21
- data/test/rubygems/test_gem_commands_query_command.rb +35 -10
- data/test/rubygems/test_gem_commands_search_command.rb +0 -2
- data/test/rubygems/test_gem_commands_server_command.rb +6 -4
- data/test/rubygems/test_gem_commands_setup_command.rb +228 -128
- data/test/rubygems/test_gem_commands_signin_command.rb +36 -11
- data/test/rubygems/test_gem_commands_signout_command.rb +0 -7
- data/test/rubygems/test_gem_commands_sources_command.rb +193 -9
- data/test/rubygems/test_gem_commands_specification_command.rb +46 -20
- data/test/rubygems/test_gem_commands_stale_command.rb +0 -2
- data/test/rubygems/test_gem_commands_uninstall_command.rb +108 -52
- data/test/rubygems/test_gem_commands_unpack_command.rb +0 -2
- data/test/rubygems/test_gem_commands_update_command.rb +201 -29
- data/test/rubygems/test_gem_commands_which_command.rb +3 -5
- data/test/rubygems/test_gem_commands_yank_command.rb +86 -5
- data/test/rubygems/test_gem_config_file.rb +25 -13
- data/test/rubygems/test_gem_dependency.rb +6 -2
- data/test/rubygems/test_gem_dependency_installer.rb +169 -252
- data/test/rubygems/test_gem_dependency_list.rb +31 -26
- data/test/rubygems/test_gem_dependency_resolution_error.rb +1 -3
- data/test/rubygems/test_gem_doctor.rb +28 -2
- data/test/rubygems/test_gem_ext_builder.rb +51 -44
- data/test/rubygems/test_gem_ext_cmake_builder.rb +16 -23
- data/test/rubygems/test_gem_ext_configure_builder.rb +6 -14
- data/test/rubygems/test_gem_ext_ext_conf_builder.rb +21 -29
- data/test/rubygems/test_gem_ext_rake_builder.rb +39 -22
- data/test/rubygems/test_gem_gem_runner.rb +47 -2
- data/test/rubygems/test_gem_gemcutter_utilities.rb +16 -13
- data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -2
- data/test/rubygems/test_gem_indexer.rb +40 -55
- data/test/rubygems/test_gem_install_update_options.rb +45 -21
- data/test/rubygems/test_gem_installer.rb +661 -338
- data/test/rubygems/test_gem_local_remote_options.rb +0 -2
- data/test/rubygems/test_gem_name_tuple.rb +0 -2
- data/test/rubygems/test_gem_package.rb +132 -45
- data/test/rubygems/test_gem_package_old.rb +56 -55
- data/test/rubygems/test_gem_package_tar_header.rb +18 -1
- data/test/rubygems/test_gem_package_tar_reader.rb +0 -2
- data/test/rubygems/test_gem_package_tar_reader_entry.rb +6 -7
- data/test/rubygems/test_gem_package_tar_writer.rb +20 -12
- data/test/rubygems/test_gem_package_task.rb +46 -13
- data/test/rubygems/test_gem_path_support.rb +17 -13
- data/test/rubygems/test_gem_platform.rb +74 -7
- data/test/rubygems/test_gem_rdoc.rb +0 -1
- data/test/rubygems/test_gem_remote_fetcher.rb +223 -209
- data/test/rubygems/test_gem_request.rb +30 -19
- data/test/rubygems/test_gem_request_connection_pools.rb +2 -2
- data/test/rubygems/test_gem_request_set.rb +104 -29
- data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +4 -6
- data/test/rubygems/test_gem_request_set_lockfile.rb +4 -5
- data/test/rubygems/test_gem_request_set_lockfile_parser.rb +9 -10
- data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +118 -118
- data/test/rubygems/test_gem_requirement.rb +50 -4
- data/test/rubygems/test_gem_resolver.rb +73 -31
- data/test/rubygems/test_gem_resolver_activation_request.rb +3 -34
- data/test/rubygems/test_gem_resolver_api_set.rb +60 -59
- data/test/rubygems/test_gem_resolver_api_specification.rb +3 -5
- data/test/rubygems/test_gem_resolver_best_set.rb +27 -6
- data/test/rubygems/test_gem_resolver_composed_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_conflict.rb +1 -7
- data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -2
- data/test/rubygems/test_gem_resolver_git_set.rb +0 -2
- data/test/rubygems/test_gem_resolver_git_specification.rb +1 -2
- data/test/rubygems/test_gem_resolver_index_set.rb +2 -4
- data/test/rubygems/test_gem_resolver_index_specification.rb +7 -4
- data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -3
- data/test/rubygems/test_gem_resolver_installer_set.rb +10 -10
- data/test/rubygems/test_gem_resolver_local_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_lock_set.rb +3 -5
- data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -2
- data/test/rubygems/test_gem_resolver_specification.rb +0 -2
- data/test/rubygems/test_gem_resolver_vendor_set.rb +1 -3
- data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -2
- data/test/rubygems/test_gem_security.rb +27 -25
- data/test/rubygems/test_gem_security_policy.rb +7 -12
- data/test/rubygems/test_gem_security_signer.rb +11 -12
- data/test/rubygems/test_gem_security_trust_dir.rb +4 -6
- data/test/rubygems/test_gem_server.rb +13 -12
- data/test/rubygems/test_gem_silent_ui.rb +0 -1
- data/test/rubygems/test_gem_source.rb +32 -17
- data/test/rubygems/test_gem_source_fetch_problem.rb +0 -1
- data/test/rubygems/test_gem_source_git.rb +12 -18
- data/test/rubygems/test_gem_source_installed.rb +11 -13
- data/test/rubygems/test_gem_source_list.rb +1 -1
- data/test/rubygems/test_gem_source_local.rb +8 -9
- data/test/rubygems/test_gem_source_lock.rb +17 -19
- data/test/rubygems/test_gem_source_specific_file.rb +9 -10
- data/test/rubygems/test_gem_source_subpath_problem.rb +49 -0
- data/test/rubygems/test_gem_source_vendor.rb +7 -9
- data/test/rubygems/test_gem_spec_fetcher.rb +11 -4
- data/test/rubygems/test_gem_specification.rb +363 -245
- data/test/rubygems/test_gem_stream_ui.rb +3 -1
- data/test/rubygems/test_gem_stub_specification.rb +6 -7
- data/test/rubygems/test_gem_text.rb +1 -2
- data/test/rubygems/test_gem_uninstaller.rb +165 -22
- data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -2
- data/test/rubygems/test_gem_uri_formatter.rb +0 -2
- data/test/rubygems/test_gem_util.rb +17 -15
- data/test/rubygems/test_gem_validator.rb +4 -7
- data/test/rubygems/test_gem_version.rb +23 -10
- data/test/rubygems/test_gem_version_option.rb +1 -3
- data/test/rubygems/test_kernel.rb +25 -9
- data/test/rubygems/test_project_sanity.rb +20 -0
- data/test/rubygems/test_remote_fetch_error.rb +1 -2
- data/test/rubygems/test_require.rb +394 -56
- data/test/test_changelog_generator.rb +17 -0
- metadata +109 -155
- data/.rubocop.yml +0 -67
- data/.travis.yml +0 -38
- data/appveyor.yml +0 -43
- data/bundler/CODE_OF_CONDUCT.md +0 -42
- data/bundler/CONTRIBUTING.md +0 -17
- data/bundler/exe/bundle_ruby +0 -60
- data/bundler/lib/bundler/cli/package.rb +0 -49
- data/bundler/lib/bundler/compatibility_guard.rb +0 -14
- data/bundler/lib/bundler/gem_remote_fetcher.rb +0 -43
- data/bundler/lib/bundler/ssl_certs/certificate_manager.rb +0 -66
- data/bundler/lib/bundler/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +0 -23
- data/bundler/lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +0 -25
- data/bundler/lib/bundler/templates/newgem/test/test_helper.rb.tt +0 -4
- data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +0 -26
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/faster.rb +0 -27
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/ssl_reuse.rb +0 -129
- data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb +0 -12
- data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb +0 -129
- data/lib/rubygems/source_local.rb +0 -7
- data/lib/rubygems/source_specific_file.rb +0 -6
- data/lib/rubygems/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +0 -21
- data/lib/rubygems/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +0 -23
- data/lib/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +0 -25
- data/lib/ubygems.rb +0 -14
- data/util/CL2notes +0 -55
- data/util/ci +0 -82
- data/util/cops/deprecations.rb +0 -52
- data/util/create_certs.rb +0 -171
- data/util/create_certs.sh +0 -27
- data/util/create_encrypted_key.rb +0 -16
- data/util/generate_spdx_license_list.rb +0 -61
- data/util/patch_with_prs.rb +0 -77
- data/util/rubocop +0 -8
- data/util/update_bundled_ca_certificates.rb +0 -139
- data/util/update_changelog.rb +0 -67
data/bundler/LICENSE.md
CHANGED
@@ -1,23 +1,22 @@
|
|
1
|
-
|
2
|
-
Portions copyright (c) 2009 Engine Yard
|
1
|
+
The MIT License
|
3
2
|
|
4
|
-
|
3
|
+
Portions copyright (c) 2010-2019 André Arko
|
4
|
+
Portions copyright (c) 2009 Engine Yard
|
5
5
|
|
6
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
the following conditions:
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
8
|
+
in the Software without restriction, including without limitation the rights
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
11
|
+
furnished to do so, subject to the following conditions:
|
13
12
|
|
14
|
-
The above copyright notice and this permission notice shall be
|
15
|
-
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
14
|
+
all copies or substantial portions of the Software.
|
16
15
|
|
17
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
OF
|
23
|
-
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22
|
+
THE SOFTWARE.
|
data/bundler/README.md
CHANGED
@@ -1,8 +1,5 @@
|
|
1
|
-
[](https://codeclimate.com/github/bundler/bundler)
|
4
|
-
[](http://inch-ci.org/github/bundler/bundler)
|
5
|
-
[](http://bundler-slackin.herokuapp.com)
|
1
|
+
[](https://rubygems.org/gems/bundler)
|
2
|
+
[](https://bundler-slackin.herokuapp.com)
|
6
3
|
|
7
4
|
# Bundler: a gem to bundle gems
|
8
5
|
|
@@ -29,7 +26,7 @@ bundle install
|
|
29
26
|
bundle exec rspec
|
30
27
|
```
|
31
28
|
|
32
|
-
See [bundler.io](
|
29
|
+
See [bundler.io](https://bundler.io) for the full documentation.
|
33
30
|
|
34
31
|
### Troubleshooting
|
35
32
|
|
@@ -45,9 +42,11 @@ To get in touch with the Bundler core team and other Bundler users, please see [
|
|
45
42
|
|
46
43
|
### Contributing
|
47
44
|
|
48
|
-
If you'd like to contribute to Bundler, that's awesome, and we <3 you.
|
45
|
+
If you'd like to contribute to Bundler, that's awesome, and we <3 you. We've put together [the Bundler contributor guide](https://github.com/rubygems/rubygems/blob/master/bundler/doc/contributing/README.md) with all of the information you need to get started.
|
49
46
|
|
50
|
-
|
47
|
+
If you'd like to request a substantial change to Bundler or its documentation, refer to the [Bundler RFC process](https://github.com/bundler/rfcs) for more information.
|
48
|
+
|
49
|
+
While some Bundler contributors are compensated by Ruby Together, the project maintainers make decisions independent of Ruby Together. As a project, we welcome contributions regardless of the author's affiliation with Ruby Together.
|
51
50
|
|
52
51
|
### Supporting
|
53
52
|
|
@@ -56,8 +55,8 @@ While some Bundler contributors are compensated by Ruby Together, the project ma
|
|
56
55
|
|
57
56
|
### Code of Conduct
|
58
57
|
|
59
|
-
Everyone interacting in the Bundler project
|
58
|
+
Everyone interacting in the Bundler project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the [Bundler code of conduct](https://github.com/rubygems/rubygems/blob/master/CODE_OF_CONDUCT.md).
|
60
59
|
|
61
60
|
### License
|
62
61
|
|
63
|
-
[MIT License](https://github.com/
|
62
|
+
Bundler is available under an [MIT License](https://github.com/rubygems/rubygems/blob/master/bundler/LICENSE.md).
|
@@ -0,0 +1,215 @@
|
|
1
|
+
# Upgrading
|
2
|
+
|
3
|
+
## Bundler 3
|
4
|
+
|
5
|
+
The following is a summary of the changes that we plan to introduce in Bundler
|
6
|
+
3, why we will be making those changes, and what the deprecation process will
|
7
|
+
look like. All these deprecations are printed by default in the Bundler 2.1 release.
|
8
|
+
|
9
|
+
If you don't want to deal with deprecations right now and want to toggle them
|
10
|
+
off, you can do it through configuration. Set the `BUNDLE_SILENCE_DEPRECATIONS`
|
11
|
+
environment variable to "true", or configure it through `bundle config` either
|
12
|
+
globally through `bundle config set --global silence_deprecations true` command, or
|
13
|
+
locally through `bundle config set --local silence_deprecations true`. From now
|
14
|
+
on in this document we will assume that all three of these configuration options
|
15
|
+
are available, but will only mention `bundle config set <option> <value>`.
|
16
|
+
|
17
|
+
As a general note, these changes are intended to improve the experience using
|
18
|
+
bundler for _new_ users, who have no existing usage routines nor possibly biased
|
19
|
+
opinions about how the tool should work based on how it has historically worked.
|
20
|
+
We do understand that changing behaviour that have been existing for years can
|
21
|
+
be annoying for old users, that's why we intend to make this process as smooth
|
22
|
+
as possible for everyone.
|
23
|
+
|
24
|
+
I'll be dividing the deprecations into four groups: CLI deprecations, Helper
|
25
|
+
deprecations, DSL deprecations, and misc deprecations. Let's dive into each of
|
26
|
+
them.
|
27
|
+
|
28
|
+
#### CLI deprecations
|
29
|
+
|
30
|
+
The CLI defines a set of commands and options that can be used by our users to
|
31
|
+
create command lines that bundler can understand. There's a number of changes
|
32
|
+
in the upcoming 3 version.
|
33
|
+
|
34
|
+
* Flags passed to `bundle install` that relied on being remembered across invocations have been deprecated.
|
35
|
+
|
36
|
+
In particular, the `--clean`, `--deployment`, `--frozen`,
|
37
|
+
`--no-prune`, `--path`, `--shebang`, `--system`, `--without`, and `--with`
|
38
|
+
options to `bundle install`.
|
39
|
+
|
40
|
+
Remembering CLI options has been a source of historical confusion and bug
|
41
|
+
reports, not only for beginners but also for experienced users. A CLI tool
|
42
|
+
should not behave differently across exactly the same invocations _unless_
|
43
|
+
explicitly configured to do so. This is what configuration is about after all,
|
44
|
+
and things should never be silently configured without the user knowing about
|
45
|
+
it.
|
46
|
+
|
47
|
+
The problem with changing this behavior is that very common workflows are
|
48
|
+
relying on it. For example, when you run `bundle install --without
|
49
|
+
development:test` in production, those flags are persisted in the app's
|
50
|
+
configuration file and further `bundle` invocations will happily ignore
|
51
|
+
development and test gems. This magic will disappear from bundler 3, and
|
52
|
+
you will explicitly need to configure it, either through environment
|
53
|
+
variables, application configuration, or machine configuration. For example,
|
54
|
+
with `bundle config set --local without development test`.
|
55
|
+
|
56
|
+
The removal of this kind of flag also applies to analogous commands, for
|
57
|
+
example, to `bundle check --path`.
|
58
|
+
|
59
|
+
* The `--force` flag to `bundle install` and `bundle update` has been renamed to `--redownload`.
|
60
|
+
|
61
|
+
This is just a simple rename of the flag, to make more apparent what it
|
62
|
+
actually does. This flag forces redownloading every gem, it doesn't "force"
|
63
|
+
anything else.
|
64
|
+
|
65
|
+
* `bundle viz` will be removed and extracted to a plugin.
|
66
|
+
|
67
|
+
This is the only bundler command requiring external dependencies, both an OS
|
68
|
+
dependency (the `graphviz` package) and a gem dependency (the `ruby-graphviz`
|
69
|
+
gem). Removing these dependencies will make development easier and it was also
|
70
|
+
seen by the bundler team as an opportunity to develop a bundler plugin that
|
71
|
+
it's officially maintained by the bundler team, and that users can take as a
|
72
|
+
reference to develop their own plugins. The plugin will contain the same code
|
73
|
+
as the old core command, the only difference being that the command is now
|
74
|
+
implemented as `bundle graph` which is much easier to understand. However, the
|
75
|
+
details of the plugin are under discussion. See [#3333](https://github.com/rubygems/rubygems/issues/3333).
|
76
|
+
|
77
|
+
* The `bundle console` will be removed and replaced with `bin/console`.
|
78
|
+
|
79
|
+
Over time we found `bundle console` hard to maintain because every user would
|
80
|
+
want to add her own specific tweaks to it. In order to ease maintenance and
|
81
|
+
reduce bikeshedding discussions, we're removing the `bundle console` command
|
82
|
+
in favor of a `bin/console` script created by `bundle gem` on gem generation
|
83
|
+
that users can tweak to their needs.
|
84
|
+
|
85
|
+
* ~The `bundle update` command will no longer update all gems, you'll need to pass `--all` to it.~ (postponed)
|
86
|
+
|
87
|
+
* The `bundle install` command will no longer accept a `--binstubs` flag.
|
88
|
+
|
89
|
+
The `--binstubs` option has been removed from `bundle install` and replaced
|
90
|
+
with the `bundle binstubs` command. The `--binstubs` flag would create
|
91
|
+
binstubs for all executables present inside the gems in the project. This was
|
92
|
+
hardly useful since most users will only use a subset of all the binstubs
|
93
|
+
available to them. Also, it would force the introduction of a bunch of most
|
94
|
+
likely unused files into source control. Because of this, binstubs now must
|
95
|
+
be created and checked into version control individually.
|
96
|
+
|
97
|
+
* ~The `bundle config` command has a new subcommand-based interface.~ (postponed)
|
98
|
+
|
99
|
+
* The `bundle inject` command is deprecated and replaced with `bundle add`.
|
100
|
+
|
101
|
+
We believe the new command fits the user's mental model better and it supports
|
102
|
+
a wider set of use cases. The interface supported by `bundle inject` works
|
103
|
+
exactly the same in `bundle add`, so it should be easy to migrate to the new
|
104
|
+
command.
|
105
|
+
|
106
|
+
#### Helper deprecations
|
107
|
+
|
108
|
+
* `Bundler.clean_env`, `Bundler.with_clean_env`, `Bundler.clean_system`, and `Bundler.clean_exec` are deprecated.
|
109
|
+
|
110
|
+
All of these helpers ultimately use `Bundler.clean_env` under the hood, which
|
111
|
+
makes sure all bundler-related environment are removed inside the block it
|
112
|
+
yields.
|
113
|
+
|
114
|
+
After quite a lot user reports, we noticed that users don't usually want this
|
115
|
+
but instead want the bundler environment as it was before the current process
|
116
|
+
was started. Thus, `Bundler.with_original_env`, `Bundler.original_system`, and
|
117
|
+
`Bundler.original_exec` were born. They all use the new `Bundler.original_env`
|
118
|
+
under the hood.
|
119
|
+
|
120
|
+
There's however some specific cases where the good old `Bundler.clean_env`
|
121
|
+
behavior can be useful. For example, when testing Rails generators, you really
|
122
|
+
want an environment where `bundler` is out of the picture. This is why we
|
123
|
+
decided to keep the old behavior under a new more clear name, because we
|
124
|
+
figured the word "clean" was too ambiguous. So we have introduced
|
125
|
+
`Bundler.unbundled_env`, `Bundler.with_unbundled_env`,
|
126
|
+
`Bundler.unbundled_system`, and `Bundler.unbundled_exec`.
|
127
|
+
|
128
|
+
* `Bundler.environment` is deprecated in favor of `Bundler.load`.
|
129
|
+
|
130
|
+
We're not sure how people might be using this directly but we have removed the
|
131
|
+
`Bundler::Environment` class which was instantiated by `Bundler.environment`
|
132
|
+
since we realized the `Bundler::Runtime` class was the same thing. During the
|
133
|
+
transition `Bundler.environment` will delegate to `Bundler.load`, which holds
|
134
|
+
the reference to the `Bundler::Environment`.
|
135
|
+
|
136
|
+
#### DSL deprecations
|
137
|
+
|
138
|
+
The following deprecations in bundler's DSL are meant to prepare for the strict
|
139
|
+
source pinning in bundler 3, where the source for every dependency will be
|
140
|
+
unambiguously defined.
|
141
|
+
|
142
|
+
* Multiple global Gemfile sources will no longer be supported.
|
143
|
+
|
144
|
+
Instead of something like this:
|
145
|
+
|
146
|
+
```ruby
|
147
|
+
source "https://main_source"
|
148
|
+
source "https://another_source"
|
149
|
+
|
150
|
+
gem "dependency1"
|
151
|
+
gem "dependency2"
|
152
|
+
```
|
153
|
+
|
154
|
+
do something like this:
|
155
|
+
|
156
|
+
```ruby
|
157
|
+
source "https://main_source"
|
158
|
+
|
159
|
+
gem "dependency1"
|
160
|
+
|
161
|
+
source "https://another_source" do
|
162
|
+
gem "dependency2"
|
163
|
+
end
|
164
|
+
```
|
165
|
+
|
166
|
+
* Global `path` and `git` sources will no longer be supported.
|
167
|
+
|
168
|
+
Instead of something like this:
|
169
|
+
|
170
|
+
```ruby
|
171
|
+
path "/my/path/with/gems"
|
172
|
+
git "https://my_git_repo_with_gems"
|
173
|
+
|
174
|
+
gem "dependency1"
|
175
|
+
gem "dependency2"
|
176
|
+
```
|
177
|
+
|
178
|
+
do something like this:
|
179
|
+
|
180
|
+
```ruby
|
181
|
+
gem "dependency1", path: "/my/path/with/gems"
|
182
|
+
gem "dependency2", git: "https://my_git_repo_with_gems"
|
183
|
+
```
|
184
|
+
|
185
|
+
or use the block forms if you have multiple gems for each source and you want
|
186
|
+
to be a bit DRYer:
|
187
|
+
|
188
|
+
|
189
|
+
```ruby
|
190
|
+
path "/my/path/with/gems" do
|
191
|
+
# gem "dependency1"
|
192
|
+
# ...
|
193
|
+
# gem "dependencyn"
|
194
|
+
end
|
195
|
+
|
196
|
+
git "https://my_git_repo_with_gems" do
|
197
|
+
# gem "dependency1"
|
198
|
+
# ...
|
199
|
+
# gem "dependencyn"
|
200
|
+
end
|
201
|
+
```
|
202
|
+
|
203
|
+
#### Misc deprecations
|
204
|
+
|
205
|
+
* Deployment helpers for `vlad` and `capistrano` are being removed.
|
206
|
+
|
207
|
+
These are natural deprecations since the `vlad` tool has had no activity for
|
208
|
+
years whereas `capistrano` 3 has built-in Bundler integration in the form of
|
209
|
+
the `capistrano-bundler` gem, and everyone using Capistrano 3 should be
|
210
|
+
already using that instead. If for some reason, you are still using Capistrano
|
211
|
+
2, feel free to copy the Capistrano tasks out of the Bundler 2 file
|
212
|
+
`lib/bundler/deployment.rb` and put them into your app.
|
213
|
+
|
214
|
+
In general, we don't want to maintain integrations for every deployment system
|
215
|
+
out there, so that's why we are removing these.
|
data/bundler/bundler.gemspec
CHANGED
@@ -1,15 +1,12 @@
|
|
1
|
-
# coding: utf-8
|
2
1
|
# frozen_string_literal: true
|
3
2
|
|
4
3
|
begin
|
5
|
-
|
4
|
+
require_relative "lib/bundler/version"
|
6
5
|
rescue LoadError
|
7
6
|
# for Ruby core repository
|
8
|
-
|
7
|
+
require_relative "version"
|
9
8
|
end
|
10
9
|
|
11
|
-
require "shellwords"
|
12
|
-
|
13
10
|
Gem::Specification.new do |s|
|
14
11
|
s.name = "bundler"
|
15
12
|
s.version = Bundler::VERSION
|
@@ -21,38 +18,24 @@ Gem::Specification.new do |s|
|
|
21
18
|
"Yehuda Katz"
|
22
19
|
]
|
23
20
|
s.email = ["team@bundler.io"]
|
24
|
-
s.homepage = "
|
21
|
+
s.homepage = "https://bundler.io"
|
25
22
|
s.summary = "The best way to manage your application's dependencies"
|
26
23
|
s.description = "Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably"
|
27
24
|
|
28
25
|
if s.respond_to?(:metadata=)
|
29
26
|
s.metadata = {
|
30
|
-
"bug_tracker_uri" => "
|
31
|
-
"changelog_uri" => "https://github.com/
|
27
|
+
"bug_tracker_uri" => "https://github.com/rubygems/rubygems/issues?q=is%3Aopen+is%3Aissue+label%3ABundler",
|
28
|
+
"changelog_uri" => "https://github.com/rubygems/rubygems/blob/master/bundler/CHANGELOG.md",
|
32
29
|
"homepage_uri" => "https://bundler.io/",
|
33
|
-
"source_code_uri" => "
|
30
|
+
"source_code_uri" => "https://github.com/rubygems/rubygems/",
|
34
31
|
}
|
35
32
|
end
|
36
33
|
|
37
|
-
|
38
|
-
|
39
|
-
s.required_rubygems_version = ">= 2.5.0"
|
40
|
-
else
|
41
|
-
s.required_ruby_version = ">= 1.8.7"
|
42
|
-
s.required_rubygems_version = ">= 1.3.6"
|
43
|
-
end
|
34
|
+
s.required_ruby_version = ">= 2.3.0"
|
35
|
+
s.required_rubygems_version = ">= 2.5.2"
|
44
36
|
|
45
|
-
s.
|
46
|
-
s.add_development_dependency "mustache", "0.99.6"
|
47
|
-
s.add_development_dependency "rake", "~> 10.0"
|
48
|
-
s.add_development_dependency "rdiscount", "~> 2.2"
|
49
|
-
s.add_development_dependency "ronn", "~> 0.7.3"
|
50
|
-
s.add_development_dependency "rspec", "~> 3.6"
|
37
|
+
s.files = Dir.glob("{lib,exe}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
|
51
38
|
|
52
|
-
s.files = `git ls-files -z`.split("\x0").select {|f| f.match(%r{^(lib|exe)/}) }
|
53
|
-
# we don't check in man pages, but we need to ship them because
|
54
|
-
# we use them to generate the long-form help for each command.
|
55
|
-
s.files += Dir.glob("man/**/*")
|
56
39
|
# Include the CHANGELOG.md, LICENSE.md, README.md manually
|
57
40
|
s.files += %w[CHANGELOG.md LICENSE.md README.md]
|
58
41
|
# include the gemspec itself because warbler breaks w/o it
|
data/bundler/exe/bundle
CHANGED
@@ -7,7 +7,17 @@ Signal.trap("INT") do
|
|
7
7
|
exit 1
|
8
8
|
end
|
9
9
|
|
10
|
-
|
10
|
+
base_path = File.expand_path("../lib", __dir__)
|
11
|
+
|
12
|
+
if File.exist?(base_path)
|
13
|
+
require_relative "../lib/bundler"
|
14
|
+
else
|
15
|
+
require "bundler"
|
16
|
+
end
|
17
|
+
|
18
|
+
# Workaround for non-activated bundler spec due to missing https://github.com/rubygems/rubygems/commit/4e306d7bcdee924b8d80ca9db6125aa59ee4e5a3
|
19
|
+
gem "bundler", Bundler::VERSION if Gem.rubygems_version < Gem::Version.new("2.6.2")
|
20
|
+
|
11
21
|
# Check if an older version of bundler is installed
|
12
22
|
$LOAD_PATH.each do |path|
|
13
23
|
next unless path =~ %r{/bundler-0\.(\d+)} && $1.to_i < 9
|
@@ -18,9 +28,18 @@ $LOAD_PATH.each do |path|
|
|
18
28
|
abort(err)
|
19
29
|
end
|
20
30
|
|
21
|
-
|
31
|
+
if File.exist?(base_path)
|
32
|
+
require_relative "../lib/bundler/friendly_errors"
|
33
|
+
else
|
34
|
+
require "bundler/friendly_errors"
|
35
|
+
end
|
36
|
+
|
22
37
|
Bundler.with_friendly_errors do
|
23
|
-
|
38
|
+
if File.exist?(base_path)
|
39
|
+
require_relative "../lib/bundler/cli"
|
40
|
+
else
|
41
|
+
require "bundler/cli"
|
42
|
+
end
|
24
43
|
|
25
44
|
# Allow any command to use --help flag to show help for that command
|
26
45
|
help_flags = %w[--help -h]
|
data/bundler/lib/bundler.rb
CHANGED
@@ -1,65 +1,79 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
require "bundler/vendored_fileutils"
|
3
|
+
require_relative "bundler/vendored_fileutils"
|
6
4
|
require "pathname"
|
7
5
|
require "rbconfig"
|
8
|
-
require "thread"
|
9
|
-
|
10
|
-
require "bundler/errors"
|
11
|
-
require "bundler/environment_preserver"
|
12
|
-
require "bundler/plugin"
|
13
|
-
require "bundler/rubygems_ext"
|
14
|
-
require "bundler/rubygems_integration"
|
15
|
-
require "bundler/version"
|
16
|
-
require "bundler/constants"
|
17
|
-
require "bundler/current_ruby"
|
18
|
-
require "bundler/build_metadata"
|
19
6
|
|
7
|
+
require_relative "bundler/errors"
|
8
|
+
require_relative "bundler/environment_preserver"
|
9
|
+
require_relative "bundler/plugin"
|
10
|
+
require_relative "bundler/rubygems_ext"
|
11
|
+
require_relative "bundler/rubygems_integration"
|
12
|
+
require_relative "bundler/version"
|
13
|
+
require_relative "bundler/constants"
|
14
|
+
require_relative "bundler/current_ruby"
|
15
|
+
require_relative "bundler/build_metadata"
|
16
|
+
|
17
|
+
# Bundler provides a consistent environment for Ruby projects by
|
18
|
+
# tracking and installing the exact gems and versions that are needed.
|
19
|
+
#
|
20
|
+
# Since Ruby 2.6, Bundler is a part of Ruby's standard library.
|
21
|
+
#
|
22
|
+
# Bunder is used by creating _gemfiles_ listing all the project dependencies
|
23
|
+
# and (optionally) their versions and then using
|
24
|
+
#
|
25
|
+
# require 'bundler/setup'
|
26
|
+
#
|
27
|
+
# or Bundler.setup to setup environment where only specified gems and their
|
28
|
+
# specified versions could be used.
|
29
|
+
#
|
30
|
+
# See {Bundler website}[https://bundler.io/docs.html] for extensive documentation
|
31
|
+
# on gemfiles creation and Bundler usage.
|
32
|
+
#
|
33
|
+
# As a standard library inside project, Bundler could be used for introspection
|
34
|
+
# of loaded and required modules.
|
35
|
+
#
|
20
36
|
module Bundler
|
21
|
-
environment_preserver = EnvironmentPreserver.
|
37
|
+
environment_preserver = EnvironmentPreserver.from_env
|
22
38
|
ORIGINAL_ENV = environment_preserver.restore
|
23
|
-
|
39
|
+
environment_preserver.replace_with_backup
|
24
40
|
SUDO_MUTEX = Mutex.new
|
25
41
|
|
26
|
-
autoload :Definition, "bundler/definition"
|
27
|
-
autoload :Dependency, "bundler/dependency"
|
28
|
-
autoload :DepProxy, "bundler/dep_proxy"
|
29
|
-
autoload :Deprecate, "bundler/deprecate"
|
30
|
-
autoload :Dsl, "bundler/dsl"
|
31
|
-
autoload :EndpointSpecification, "bundler/endpoint_specification"
|
32
|
-
autoload :Env, "bundler/env"
|
33
|
-
autoload :Fetcher, "bundler/fetcher"
|
34
|
-
autoload :FeatureFlag, "bundler/feature_flag"
|
35
|
-
autoload :GemHelper, "bundler/gem_helper"
|
36
|
-
autoload :GemHelpers, "bundler/gem_helpers"
|
37
|
-
autoload :
|
38
|
-
autoload :
|
39
|
-
autoload :
|
40
|
-
autoload :
|
41
|
-
autoload :
|
42
|
-
autoload :
|
43
|
-
autoload :
|
44
|
-
autoload :
|
45
|
-
autoload :
|
46
|
-
autoload :
|
47
|
-
autoload :
|
48
|
-
autoload :
|
49
|
-
autoload :
|
50
|
-
autoload :
|
51
|
-
autoload :
|
52
|
-
autoload :
|
53
|
-
autoload :
|
54
|
-
autoload :
|
55
|
-
autoload :
|
56
|
-
autoload :
|
57
|
-
autoload :
|
58
|
-
autoload :
|
59
|
-
autoload :
|
60
|
-
autoload :
|
61
|
-
autoload :URICredentialsFilter, "bundler/uri_credentials_filter"
|
62
|
-
autoload :VersionRanges, "bundler/version_ranges"
|
42
|
+
autoload :Definition, File.expand_path("bundler/definition", __dir__)
|
43
|
+
autoload :Dependency, File.expand_path("bundler/dependency", __dir__)
|
44
|
+
autoload :DepProxy, File.expand_path("bundler/dep_proxy", __dir__)
|
45
|
+
autoload :Deprecate, File.expand_path("bundler/deprecate", __dir__)
|
46
|
+
autoload :Dsl, File.expand_path("bundler/dsl", __dir__)
|
47
|
+
autoload :EndpointSpecification, File.expand_path("bundler/endpoint_specification", __dir__)
|
48
|
+
autoload :Env, File.expand_path("bundler/env", __dir__)
|
49
|
+
autoload :Fetcher, File.expand_path("bundler/fetcher", __dir__)
|
50
|
+
autoload :FeatureFlag, File.expand_path("bundler/feature_flag", __dir__)
|
51
|
+
autoload :GemHelper, File.expand_path("bundler/gem_helper", __dir__)
|
52
|
+
autoload :GemHelpers, File.expand_path("bundler/gem_helpers", __dir__)
|
53
|
+
autoload :GemVersionPromoter, File.expand_path("bundler/gem_version_promoter", __dir__)
|
54
|
+
autoload :Graph, File.expand_path("bundler/graph", __dir__)
|
55
|
+
autoload :Index, File.expand_path("bundler/index", __dir__)
|
56
|
+
autoload :Injector, File.expand_path("bundler/injector", __dir__)
|
57
|
+
autoload :Installer, File.expand_path("bundler/installer", __dir__)
|
58
|
+
autoload :LazySpecification, File.expand_path("bundler/lazy_specification", __dir__)
|
59
|
+
autoload :LockfileParser, File.expand_path("bundler/lockfile_parser", __dir__)
|
60
|
+
autoload :MatchPlatform, File.expand_path("bundler/match_platform", __dir__)
|
61
|
+
autoload :ProcessLock, File.expand_path("bundler/process_lock", __dir__)
|
62
|
+
autoload :RemoteSpecification, File.expand_path("bundler/remote_specification", __dir__)
|
63
|
+
autoload :Resolver, File.expand_path("bundler/resolver", __dir__)
|
64
|
+
autoload :Retry, File.expand_path("bundler/retry", __dir__)
|
65
|
+
autoload :RubyDsl, File.expand_path("bundler/ruby_dsl", __dir__)
|
66
|
+
autoload :RubyVersion, File.expand_path("bundler/ruby_version", __dir__)
|
67
|
+
autoload :Runtime, File.expand_path("bundler/runtime", __dir__)
|
68
|
+
autoload :Settings, File.expand_path("bundler/settings", __dir__)
|
69
|
+
autoload :SharedHelpers, File.expand_path("bundler/shared_helpers", __dir__)
|
70
|
+
autoload :Source, File.expand_path("bundler/source", __dir__)
|
71
|
+
autoload :SourceList, File.expand_path("bundler/source_list", __dir__)
|
72
|
+
autoload :SpecSet, File.expand_path("bundler/spec_set", __dir__)
|
73
|
+
autoload :StubSpecification, File.expand_path("bundler/stub_specification", __dir__)
|
74
|
+
autoload :UI, File.expand_path("bundler/ui", __dir__)
|
75
|
+
autoload :URICredentialsFilter, File.expand_path("bundler/uri_credentials_filter", __dir__)
|
76
|
+
autoload :VersionRanges, File.expand_path("bundler/version_ranges", __dir__)
|
63
77
|
|
64
78
|
class << self
|
65
79
|
def configure
|
@@ -67,11 +81,11 @@ module Bundler
|
|
67
81
|
end
|
68
82
|
|
69
83
|
def ui
|
70
|
-
(defined?(@ui) && @ui) || (self.ui = UI::
|
84
|
+
(defined?(@ui) && @ui) || (self.ui = UI::Shell.new)
|
71
85
|
end
|
72
86
|
|
73
87
|
def ui=(ui)
|
74
|
-
Bundler.rubygems.ui =
|
88
|
+
Bundler.rubygems.ui = UI::RGProxy.new(ui)
|
75
89
|
@ui = ui
|
76
90
|
end
|
77
91
|
|
@@ -94,6 +108,33 @@ module Bundler
|
|
94
108
|
end
|
95
109
|
end
|
96
110
|
|
111
|
+
# Turns on the Bundler runtime. After +Bundler.setup+ call, all +load+ or
|
112
|
+
# +require+ of the gems would be allowed only if they are part of
|
113
|
+
# the Gemfile or Ruby's standard library. If the versions specified
|
114
|
+
# in Gemfile, only those versions would be loaded.
|
115
|
+
#
|
116
|
+
# Assuming Gemfile
|
117
|
+
#
|
118
|
+
# gem 'first_gem', '= 1.0'
|
119
|
+
# group :test do
|
120
|
+
# gem 'second_gem', '= 1.0'
|
121
|
+
# end
|
122
|
+
#
|
123
|
+
# The code using Bundler.setup works as follows:
|
124
|
+
#
|
125
|
+
# require 'third_gem' # allowed, required from global gems
|
126
|
+
# require 'first_gem' # allowed, loads the last installed version
|
127
|
+
# Bundler.setup
|
128
|
+
# require 'fourth_gem' # fails with LoadError
|
129
|
+
# require 'second_gem' # loads exactly version 1.0
|
130
|
+
#
|
131
|
+
# +Bundler.setup+ can be called only once, all subsequent calls are no-op.
|
132
|
+
#
|
133
|
+
# If _groups_ list is provided, only gems from specified groups would
|
134
|
+
# be allowed (gems specified outside groups belong to special +:default+ group).
|
135
|
+
#
|
136
|
+
# To require all gems from Gemfile (or only some groups), see Bundler.require.
|
137
|
+
#
|
97
138
|
def setup(*groups)
|
98
139
|
# Return if all groups are already loaded
|
99
140
|
return @setup if defined?(@setup) && @setup
|
@@ -110,6 +151,24 @@ module Bundler
|
|
110
151
|
end
|
111
152
|
end
|
112
153
|
|
154
|
+
# Setups Bundler environment (see Bundler.setup) if it is not already set,
|
155
|
+
# and loads all gems from groups specified. Unlike ::setup, can be called
|
156
|
+
# multiple times with different groups (if they were allowed by setup).
|
157
|
+
#
|
158
|
+
# Assuming Gemfile
|
159
|
+
#
|
160
|
+
# gem 'first_gem', '= 1.0'
|
161
|
+
# group :test do
|
162
|
+
# gem 'second_gem', '= 1.0'
|
163
|
+
# end
|
164
|
+
#
|
165
|
+
# The code will work as follows:
|
166
|
+
#
|
167
|
+
# Bundler.setup # allow all groups
|
168
|
+
# Bundler.require(:default) # requires only first_gem
|
169
|
+
# # ...later
|
170
|
+
# Bundler.require(:test) # requires second_gem
|
171
|
+
#
|
113
172
|
def require(*groups)
|
114
173
|
setup(*groups).require(*groups)
|
115
174
|
end
|
@@ -119,7 +178,7 @@ module Bundler
|
|
119
178
|
end
|
120
179
|
|
121
180
|
def environment
|
122
|
-
SharedHelpers.major_deprecation 2, "Bundler.environment has been removed in favor of Bundler.load"
|
181
|
+
SharedHelpers.major_deprecation 2, "Bundler.environment has been removed in favor of Bundler.load", :print_caller_location => true
|
123
182
|
load
|
124
183
|
end
|
125
184
|
|
@@ -152,8 +211,14 @@ module Bundler
|
|
152
211
|
end
|
153
212
|
end
|
154
213
|
|
214
|
+
def most_specific_locked_platform?(platform)
|
215
|
+
return false unless defined?(@definition) && @definition
|
216
|
+
|
217
|
+
definition.most_specific_locked_platform == platform
|
218
|
+
end
|
219
|
+
|
155
220
|
def ruby_scope
|
156
|
-
"#{Bundler.rubygems.ruby_engine}/#{
|
221
|
+
"#{Bundler.rubygems.ruby_engine}/#{RbConfig::CONFIG["ruby_version"]}"
|
157
222
|
end
|
158
223
|
|
159
224
|
def user_home
|
@@ -170,8 +235,7 @@ module Bundler
|
|
170
235
|
end
|
171
236
|
|
172
237
|
if warning
|
173
|
-
|
174
|
-
user_home = tmp_home_path(Etc.getlogin, warning)
|
238
|
+
user_home = tmp_home_path(warning)
|
175
239
|
Bundler.ui.warn "#{warning}\nBundler will use `#{user_home}' as your home directory temporarily.\n"
|
176
240
|
user_home
|
177
241
|
else
|
@@ -180,37 +244,22 @@ module Bundler
|
|
180
244
|
end
|
181
245
|
end
|
182
246
|
|
183
|
-
def tmp_home_path(login, warning)
|
184
|
-
login ||= "unknown"
|
185
|
-
Kernel.send(:require, "tmpdir")
|
186
|
-
path = Pathname.new(Dir.tmpdir).join("bundler", "home")
|
187
|
-
SharedHelpers.filesystem_access(path) do |tmp_home_path|
|
188
|
-
unless tmp_home_path.exist?
|
189
|
-
tmp_home_path.mkpath
|
190
|
-
tmp_home_path.chmod(0o777)
|
191
|
-
end
|
192
|
-
tmp_home_path.join(login).tap(&:mkpath)
|
193
|
-
end
|
194
|
-
rescue RuntimeError => e
|
195
|
-
raise e.exception("#{warning}\nBundler also failed to create a temporary home directory at `#{path}':\n#{e}")
|
196
|
-
end
|
197
|
-
|
198
247
|
def user_bundle_path(dir = "home")
|
199
248
|
env_var, fallback = case dir
|
200
249
|
when "home"
|
201
|
-
["BUNDLE_USER_HOME", Pathname.new(user_home).join(".bundle")]
|
250
|
+
["BUNDLE_USER_HOME", proc { Pathname.new(user_home).join(".bundle") }]
|
202
251
|
when "cache"
|
203
|
-
["BUNDLE_USER_CACHE", user_bundle_path.join("cache")]
|
252
|
+
["BUNDLE_USER_CACHE", proc { user_bundle_path.join("cache") }]
|
204
253
|
when "config"
|
205
|
-
["BUNDLE_USER_CONFIG", user_bundle_path.join("config")]
|
254
|
+
["BUNDLE_USER_CONFIG", proc { user_bundle_path.join("config") }]
|
206
255
|
when "plugin"
|
207
|
-
["BUNDLE_USER_PLUGIN", user_bundle_path.join("plugin")]
|
256
|
+
["BUNDLE_USER_PLUGIN", proc { user_bundle_path.join("plugin") }]
|
208
257
|
else
|
209
258
|
raise BundlerError, "Unknown user path requested: #{dir}"
|
210
259
|
end
|
211
260
|
# `fallback` will already be a Pathname, but Pathname.new() is
|
212
261
|
# idempotent so it's OK
|
213
|
-
Pathname.new(ENV.fetch(env_var, fallback))
|
262
|
+
Pathname.new(ENV.fetch(env_var, &fallback))
|
214
263
|
end
|
215
264
|
|
216
265
|
def user_cache
|
@@ -241,7 +290,13 @@ module Bundler
|
|
241
290
|
|
242
291
|
def app_config_path
|
243
292
|
if app_config = ENV["BUNDLE_APP_CONFIG"]
|
244
|
-
Pathname.new(app_config)
|
293
|
+
app_config_pathname = Pathname.new(app_config)
|
294
|
+
|
295
|
+
if app_config_pathname.absolute?
|
296
|
+
app_config_pathname
|
297
|
+
else
|
298
|
+
app_config_pathname.expand_path(root)
|
299
|
+
end
|
245
300
|
else
|
246
301
|
root.join(".bundle")
|
247
302
|
end
|
@@ -263,7 +318,7 @@ module Bundler
|
|
263
318
|
message = <<EOF
|
264
319
|
It is a security vulnerability to allow your home directory to be world-writable, and bundler can not continue.
|
265
320
|
You should probably consider fixing this issue by running `chmod o-w ~` on *nix.
|
266
|
-
Please refer to
|
321
|
+
Please refer to https://ruby-doc.org/stdlib-2.1.2/libdoc/fileutils/rdoc/FileUtils.html#method-c-remove_entry_secure for details.
|
267
322
|
EOF
|
268
323
|
File.world_writable?(path) ? Bundler.ui.warn(message) : raise
|
269
324
|
raise PathError, "Please fix the world-writable issue with your #{path} directory"
|
@@ -280,10 +335,20 @@ EOF
|
|
280
335
|
ORIGINAL_ENV.clone
|
281
336
|
end
|
282
337
|
|
283
|
-
# @deprecated Use `
|
284
|
-
# @return [Hash] Environment with all bundler-related variables removed
|
338
|
+
# @deprecated Use `unbundled_env` instead
|
285
339
|
def clean_env
|
286
|
-
Bundler::SharedHelpers.major_deprecation(
|
340
|
+
Bundler::SharedHelpers.major_deprecation(
|
341
|
+
2,
|
342
|
+
"`Bundler.clean_env` has been deprecated in favor of `Bundler.unbundled_env`. " \
|
343
|
+
"If you instead want the environment before bundler was originally loaded, use `Bundler.original_env`",
|
344
|
+
:print_caller_location => true
|
345
|
+
)
|
346
|
+
|
347
|
+
unbundled_env
|
348
|
+
end
|
349
|
+
|
350
|
+
# @return [Hash] Environment with all bundler-related variables removed
|
351
|
+
def unbundled_env
|
287
352
|
env = original_env
|
288
353
|
|
289
354
|
if env.key?("BUNDLER_ORIG_MANPATH")
|
@@ -293,7 +358,10 @@ EOF
|
|
293
358
|
env.delete_if {|k, _| k[0, 7] == "BUNDLE_" }
|
294
359
|
|
295
360
|
if env.key?("RUBYOPT")
|
296
|
-
|
361
|
+
rubyopt = env["RUBYOPT"].split(" ")
|
362
|
+
rubyopt.delete("-r#{File.expand_path("bundler/setup", __dir__)}")
|
363
|
+
rubyopt.delete("-rbundler/setup")
|
364
|
+
env["RUBYOPT"] = rubyopt.join(" ")
|
297
365
|
end
|
298
366
|
|
299
367
|
if env.key?("RUBYLIB")
|
@@ -305,24 +373,74 @@ EOF
|
|
305
373
|
env
|
306
374
|
end
|
307
375
|
|
376
|
+
# Run block with environment present before Bundler was activated
|
308
377
|
def with_original_env
|
309
378
|
with_env(original_env) { yield }
|
310
379
|
end
|
311
380
|
|
381
|
+
# @deprecated Use `with_unbundled_env` instead
|
312
382
|
def with_clean_env
|
313
|
-
|
383
|
+
Bundler::SharedHelpers.major_deprecation(
|
384
|
+
2,
|
385
|
+
"`Bundler.with_clean_env` has been deprecated in favor of `Bundler.with_unbundled_env`. " \
|
386
|
+
"If you instead want the environment before bundler was originally loaded, use `Bundler.with_original_env`",
|
387
|
+
:print_caller_location => true
|
388
|
+
)
|
389
|
+
|
390
|
+
with_env(unbundled_env) { yield }
|
391
|
+
end
|
392
|
+
|
393
|
+
# Run block with all bundler-related variables removed
|
394
|
+
def with_unbundled_env
|
395
|
+
with_env(unbundled_env) { yield }
|
396
|
+
end
|
397
|
+
|
398
|
+
# Run subcommand with the environment present before Bundler was activated
|
399
|
+
def original_system(*args)
|
400
|
+
with_original_env { Kernel.system(*args) }
|
314
401
|
end
|
315
402
|
|
403
|
+
# @deprecated Use `unbundled_system` instead
|
316
404
|
def clean_system(*args)
|
317
|
-
|
405
|
+
Bundler::SharedHelpers.major_deprecation(
|
406
|
+
2,
|
407
|
+
"`Bundler.clean_system` has been deprecated in favor of `Bundler.unbundled_system`. " \
|
408
|
+
"If you instead want to run the command in the environment before bundler was originally loaded, use `Bundler.original_system`",
|
409
|
+
:print_caller_location => true
|
410
|
+
)
|
411
|
+
|
412
|
+
with_env(unbundled_env) { Kernel.system(*args) }
|
413
|
+
end
|
414
|
+
|
415
|
+
# Run subcommand in an environment with all bundler related variables removed
|
416
|
+
def unbundled_system(*args)
|
417
|
+
with_unbundled_env { Kernel.system(*args) }
|
318
418
|
end
|
319
419
|
|
420
|
+
# Run a `Kernel.exec` to a subcommand with the environment present before Bundler was activated
|
421
|
+
def original_exec(*args)
|
422
|
+
with_original_env { Kernel.exec(*args) }
|
423
|
+
end
|
424
|
+
|
425
|
+
# @deprecated Use `unbundled_exec` instead
|
320
426
|
def clean_exec(*args)
|
321
|
-
|
427
|
+
Bundler::SharedHelpers.major_deprecation(
|
428
|
+
2,
|
429
|
+
"`Bundler.clean_exec` has been deprecated in favor of `Bundler.unbundled_exec`. " \
|
430
|
+
"If you instead want to exec to a command in the environment before bundler was originally loaded, use `Bundler.original_exec`",
|
431
|
+
:print_caller_location => true
|
432
|
+
)
|
433
|
+
|
434
|
+
with_env(unbundled_env) { Kernel.exec(*args) }
|
435
|
+
end
|
436
|
+
|
437
|
+
# Run a `Kernel.exec` to a subcommand in an environment with all bundler related variables removed
|
438
|
+
def unbundled_exec(*args)
|
439
|
+
with_env(unbundled_env) { Kernel.exec(*args) }
|
322
440
|
end
|
323
441
|
|
324
442
|
def local_platform
|
325
|
-
return Gem::Platform::RUBY if settings[:force_ruby_platform]
|
443
|
+
return Gem::Platform::RUBY if settings[:force_ruby_platform] || Gem.platforms == [Gem::Platform::RUBY]
|
326
444
|
Gem::Platform.local
|
327
445
|
end
|
328
446
|
|
@@ -343,10 +461,14 @@ EOF
|
|
343
461
|
# system binaries. If you put '-n foo' in your .gemrc, RubyGems will
|
344
462
|
# install binstubs there instead. Unfortunately, RubyGems doesn't expose
|
345
463
|
# that directory at all, so rather than parse .gemrc ourselves, we allow
|
346
|
-
# the directory to be set as well, via `bundle config bindir foo`.
|
464
|
+
# the directory to be set as well, via `bundle config set --local bindir foo`.
|
347
465
|
Bundler.settings[:system_bindir] || Bundler.rubygems.gem_bindir
|
348
466
|
end
|
349
467
|
|
468
|
+
def preferred_gemfile_name
|
469
|
+
Bundler.settings[:init_gems_rb] ? "gems.rb" : "Gemfile"
|
470
|
+
end
|
471
|
+
|
350
472
|
def use_system_gems?
|
351
473
|
configured_bundle_path.use_system_gems?
|
352
474
|
end
|
@@ -408,7 +530,8 @@ EOF
|
|
408
530
|
Your user account isn't allowed to install to the system RubyGems.
|
409
531
|
You can cancel this installation and run:
|
410
532
|
|
411
|
-
bundle
|
533
|
+
bundle config set --local path 'vendor/bundle'
|
534
|
+
bundle install
|
412
535
|
|
413
536
|
to install the gems into ./vendor/bundle/, or you can enter your password
|
414
537
|
and install the bundled gems to RubyGems using sudo.
|
@@ -484,6 +607,11 @@ EOF
|
|
484
607
|
reset_rubygems!
|
485
608
|
end
|
486
609
|
|
610
|
+
def reset_settings_and_root!
|
611
|
+
@settings = nil
|
612
|
+
@root = nil
|
613
|
+
end
|
614
|
+
|
487
615
|
def reset_paths!
|
488
616
|
@bin_path = nil
|
489
617
|
@bundler_major_version = nil
|
@@ -506,10 +634,10 @@ EOF
|
|
506
634
|
@rubygems = nil
|
507
635
|
end
|
508
636
|
|
509
|
-
|
637
|
+
private
|
510
638
|
|
511
639
|
def eval_yaml_gemspec(path, contents)
|
512
|
-
|
640
|
+
require_relative "bundler/psyched_yaml"
|
513
641
|
|
514
642
|
# If the YAML is invalid, Syck raises an ArgumentError, and Psych
|
515
643
|
# raises a Psych::SyntaxError. See psyched_yaml.rb for more info.
|
@@ -523,7 +651,7 @@ EOF
|
|
523
651
|
rescue ScriptError, StandardError => e
|
524
652
|
msg = "There was an error while loading `#{path.basename}`: #{e.message}"
|
525
653
|
|
526
|
-
if e.is_a?(LoadError)
|
654
|
+
if e.is_a?(LoadError)
|
527
655
|
msg += "\nDoes it try to require a relative path? That's been removed in Ruby 1.9"
|
528
656
|
end
|
529
657
|
|
@@ -555,6 +683,17 @@ EOF
|
|
555
683
|
Bundler.rubygems.clear_paths
|
556
684
|
end
|
557
685
|
|
686
|
+
def tmp_home_path(warning)
|
687
|
+
Kernel.send(:require, "tmpdir")
|
688
|
+
SharedHelpers.filesystem_access(Dir.tmpdir) do
|
689
|
+
path = Bundler.tmp
|
690
|
+
at_exit { Bundler.rm_rf(path) }
|
691
|
+
path
|
692
|
+
end
|
693
|
+
rescue RuntimeError => e
|
694
|
+
raise e.exception("#{warning}\nBundler also failed to create a temporary home directory':\n#{e}")
|
695
|
+
end
|
696
|
+
|
558
697
|
# @param env [Hash]
|
559
698
|
def with_env(env)
|
560
699
|
backup = ENV.to_hash
|