rubygems-update 3.4.10 → 3.5.22
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +714 -4
- data/CODE_OF_CONDUCT.md +79 -28
- data/CONTRIBUTING.md +3 -3
- data/Manifest.txt +128 -257
- data/POLICIES.md +82 -13
- data/README.md +1 -3
- data/bundler/CHANGELOG.md +556 -2
- data/bundler/README.md +1 -2
- data/bundler/bundler.gemspec +4 -2
- data/bundler/exe/bundle +5 -22
- data/bundler/lib/bundler/build_metadata.rb +3 -3
- data/bundler/lib/bundler/capistrano.rb +1 -1
- data/bundler/lib/bundler/checksum.rb +254 -0
- data/bundler/lib/bundler/ci_detector.rb +75 -0
- data/bundler/lib/bundler/cli/add.rb +4 -4
- data/bundler/lib/bundler/cli/binstubs.rb +5 -5
- data/bundler/lib/bundler/cli/cache.rb +1 -1
- data/bundler/lib/bundler/cli/check.rb +3 -3
- data/bundler/lib/bundler/cli/common.rb +9 -1
- data/bundler/lib/bundler/cli/config.rb +8 -7
- data/bundler/lib/bundler/cli/console.rb +3 -2
- data/bundler/lib/bundler/cli/doctor.rb +2 -2
- data/bundler/lib/bundler/cli/exec.rb +1 -1
- data/bundler/lib/bundler/cli/fund.rb +1 -1
- data/bundler/lib/bundler/cli/gem.rb +44 -42
- data/bundler/lib/bundler/cli/info.rb +2 -13
- data/bundler/lib/bundler/cli/install.rb +18 -12
- data/bundler/lib/bundler/cli/issue.rb +1 -1
- data/bundler/lib/bundler/cli/lock.rb +33 -29
- data/bundler/lib/bundler/cli/open.rb +5 -7
- data/bundler/lib/bundler/cli/outdated.rb +23 -25
- data/bundler/lib/bundler/cli/platform.rb +7 -5
- data/bundler/lib/bundler/cli/plugin.rb +9 -15
- data/bundler/lib/bundler/cli/pristine.rb +38 -30
- data/bundler/lib/bundler/cli/show.rb +2 -2
- data/bundler/lib/bundler/cli/update.rb +6 -5
- data/bundler/lib/bundler/cli.rb +226 -291
- data/bundler/lib/bundler/compact_index_client/cache.rb +55 -60
- data/bundler/lib/bundler/compact_index_client/cache_file.rb +153 -0
- data/bundler/lib/bundler/compact_index_client/gem_parser.rb +7 -3
- data/bundler/lib/bundler/compact_index_client/parser.rb +84 -0
- data/bundler/lib/bundler/compact_index_client/updater.rb +79 -81
- data/bundler/lib/bundler/compact_index_client.rb +58 -80
- data/bundler/lib/bundler/constants.rb +8 -1
- data/bundler/lib/bundler/current_ruby.rb +5 -21
- data/bundler/lib/bundler/definition.rb +341 -180
- data/bundler/lib/bundler/dependency.rb +22 -13
- data/bundler/lib/bundler/digest.rb +2 -2
- data/bundler/lib/bundler/dsl.rb +100 -54
- data/bundler/lib/bundler/endpoint_specification.rb +17 -2
- data/bundler/lib/bundler/env.rb +4 -6
- data/bundler/lib/bundler/environment_preserver.rb +5 -23
- data/bundler/lib/bundler/errors.rb +74 -0
- data/bundler/lib/bundler/feature_flag.rb +0 -1
- data/bundler/lib/bundler/fetcher/base.rb +5 -3
- data/bundler/lib/bundler/fetcher/compact_index.rb +21 -34
- data/bundler/lib/bundler/fetcher/dependency.rb +1 -1
- data/bundler/lib/bundler/fetcher/downloader.rb +15 -11
- data/bundler/lib/bundler/fetcher/gem_remote_fetcher.rb +16 -0
- data/bundler/lib/bundler/fetcher/index.rb +2 -3
- data/bundler/lib/bundler/fetcher.rb +72 -58
- data/bundler/lib/bundler/force_platform.rb +0 -2
- data/bundler/lib/bundler/friendly_errors.rb +6 -6
- data/bundler/lib/bundler/gem_helper.rb +5 -6
- data/bundler/lib/bundler/gem_helpers.rb +21 -4
- data/bundler/lib/bundler/gem_version_promoter.rb +43 -39
- data/bundler/lib/bundler/graph.rb +9 -9
- data/bundler/lib/bundler/index.rb +63 -33
- data/bundler/lib/bundler/injector.rb +6 -8
- data/bundler/lib/bundler/inline.rb +33 -12
- data/bundler/lib/bundler/installer/gem_installer.rb +13 -12
- data/bundler/lib/bundler/installer/parallel_installer.rb +19 -36
- data/bundler/lib/bundler/installer/standalone.rb +16 -6
- data/bundler/lib/bundler/installer.rb +29 -33
- data/bundler/lib/bundler/lazy_specification.rb +31 -17
- data/bundler/lib/bundler/lockfile_generator.rb +10 -1
- data/bundler/lib/bundler/lockfile_parser.rb +110 -45
- data/bundler/lib/bundler/man/bundle-add.1 +29 -41
- data/bundler/lib/bundler/man/bundle-add.1.ronn +37 -14
- data/bundler/lib/bundler/man/bundle-binstubs.1 +4 -16
- data/bundler/lib/bundler/man/bundle-cache.1 +5 -26
- data/bundler/lib/bundler/man/bundle-cache.1.ronn +2 -2
- data/bundler/lib/bundler/man/bundle-check.1 +5 -12
- data/bundler/lib/bundler/man/bundle-check.1.ronn +3 -0
- data/bundler/lib/bundler/man/bundle-clean.1 +3 -10
- data/bundler/lib/bundler/man/bundle-config.1 +21 -217
- data/bundler/lib/bundler/man/bundle-config.1.ronn +9 -9
- data/bundler/lib/bundler/man/bundle-console.1 +4 -22
- data/bundler/lib/bundler/man/bundle-doctor.1 +4 -18
- data/bundler/lib/bundler/man/bundle-exec.1 +13 -74
- data/bundler/lib/bundler/man/bundle-exec.1.ronn +2 -3
- data/bundler/lib/bundler/man/bundle-gem.1 +19 -49
- data/bundler/lib/bundler/man/bundle-gem.1.ronn +11 -0
- data/bundler/lib/bundler/man/bundle-help.1 +3 -7
- data/bundler/lib/bundler/man/bundle-info.1 +5 -11
- data/bundler/lib/bundler/man/bundle-info.1.ronn +3 -3
- data/bundler/lib/bundler/man/bundle-init.1 +3 -12
- data/bundler/lib/bundler/man/bundle-inject.1 +6 -19
- data/bundler/lib/bundler/man/bundle-install.1 +29 -127
- data/bundler/lib/bundler/man/bundle-install.1.ronn +3 -2
- data/bundler/lib/bundler/man/bundle-list.1 +4 -19
- data/bundler/lib/bundler/man/bundle-lock.1 +5 -29
- data/bundler/lib/bundler/man/bundle-open.1 +7 -27
- data/bundler/lib/bundler/man/bundle-outdated.1 +15 -63
- data/bundler/lib/bundler/man/bundle-outdated.1.ronn +12 -8
- data/bundler/lib/bundler/man/bundle-platform.1 +5 -27
- data/bundler/lib/bundler/man/bundle-plugin.1 +24 -47
- data/bundler/lib/bundler/man/bundle-plugin.1.ronn +12 -8
- data/bundler/lib/bundler/man/bundle-pristine.1 +5 -16
- data/bundler/lib/bundler/man/bundle-remove.1 +4 -14
- data/bundler/lib/bundler/man/bundle-show.1 +3 -10
- data/bundler/lib/bundler/man/bundle-update.1 +18 -137
- data/bundler/lib/bundler/man/bundle-version.1 +3 -16
- data/bundler/lib/bundler/man/bundle-viz.1 +4 -16
- data/bundler/lib/bundler/man/bundle.1 +5 -44
- data/bundler/lib/bundler/man/gemfile.5 +43 -294
- data/bundler/lib/bundler/man/gemfile.5.ronn +23 -3
- data/bundler/lib/bundler/match_metadata.rb +4 -0
- data/bundler/lib/bundler/match_platform.rb +1 -1
- data/bundler/lib/bundler/mirror.rb +3 -3
- data/bundler/lib/bundler/plugin/api/source.rb +7 -5
- data/bundler/lib/bundler/plugin/index.rb +9 -1
- data/bundler/lib/bundler/plugin/installer/path.rb +18 -0
- data/bundler/lib/bundler/plugin/installer.rb +37 -17
- data/bundler/lib/bundler/plugin/source_list.rb +4 -4
- data/bundler/lib/bundler/plugin.rb +13 -6
- data/bundler/lib/bundler/remote_specification.rb +4 -0
- data/bundler/lib/bundler/resolver/base.rb +12 -4
- data/bundler/lib/bundler/resolver/candidate.rb +5 -17
- data/bundler/lib/bundler/resolver/incompatibility.rb +1 -1
- data/bundler/lib/bundler/resolver/package.rb +19 -1
- data/bundler/lib/bundler/resolver/spec_group.rb +21 -6
- data/bundler/lib/bundler/resolver.rb +174 -64
- data/bundler/lib/bundler/retry.rb +2 -2
- data/bundler/lib/bundler/ruby_dsl.rb +42 -7
- data/bundler/lib/bundler/ruby_version.rb +18 -5
- data/bundler/lib/bundler/rubygems_ext.rb +173 -71
- data/bundler/lib/bundler/rubygems_gem_installer.rb +56 -57
- data/bundler/lib/bundler/rubygems_integration.rb +35 -112
- data/bundler/lib/bundler/runtime.rb +5 -10
- data/bundler/lib/bundler/safe_marshal.rb +31 -0
- data/bundler/lib/bundler/self_manager.rb +49 -11
- data/bundler/lib/bundler/settings.rb +136 -49
- data/bundler/lib/bundler/setup.rb +10 -1
- data/bundler/lib/bundler/shared_helpers.rb +56 -17
- data/bundler/lib/bundler/source/git/git_proxy.rb +91 -32
- data/bundler/lib/bundler/source/git.rb +108 -39
- data/bundler/lib/bundler/source/metadata.rb +17 -15
- data/bundler/lib/bundler/source/path.rb +10 -20
- data/bundler/lib/bundler/source/rubygems/remote.rb +1 -1
- data/bundler/lib/bundler/source/rubygems.rb +87 -92
- data/bundler/lib/bundler/source.rb +3 -1
- data/bundler/lib/bundler/source_list.rb +26 -6
- data/bundler/lib/bundler/spec_set.rb +112 -30
- data/bundler/lib/bundler/stub_specification.rb +26 -4
- data/bundler/lib/bundler/templates/Executable.bundler +1 -1
- data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +77 -29
- data/bundler/lib/bundler/templates/newgem/README.md.tt +7 -3
- data/bundler/lib/bundler/templates/newgem/Rakefile.tt +8 -8
- data/bundler/lib/bundler/templates/newgem/bin/console.tt +0 -4
- data/bundler/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt +1 -1
- data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf-c.rb.tt +5 -0
- data/bundler/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +1 -1
- data/bundler/lib/bundler/templates/newgem/ext/newgem/src/lib.rs.tt +4 -4
- data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +1 -1
- data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +5 -3
- data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +0 -5
- data/bundler/lib/bundler/templates/newgem/standard.yml.tt +1 -1
- data/bundler/lib/bundler/ui/rg_proxy.rb +1 -1
- data/bundler/lib/bundler/ui/shell.rb +25 -3
- data/bundler/lib/bundler/ui/silent.rb +12 -1
- data/bundler/lib/bundler/uri_credentials_filter.rb +2 -2
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +1 -1
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +53 -6
- data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +9 -21
- data/bundler/lib/bundler/vendor/net-http-persistent/.document +1 -0
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +4 -3
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +23 -11
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +1 -1
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +102 -64
- data/bundler/lib/bundler/vendor/pub_grub/.document +1 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb +1 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb +9 -4
- data/bundler/lib/bundler/vendor/securerandom/.document +1 -0
- data/bundler/lib/bundler/vendor/securerandom/lib/random/formatter.rb +373 -0
- data/bundler/lib/bundler/vendor/securerandom/lib/securerandom.rb +96 -0
- data/bundler/lib/bundler/vendor/thor/.document +1 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +3 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +8 -10
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +15 -4
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions.rb +15 -15
- data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +140 -14
- data/bundler/lib/bundler/vendor/thor/lib/thor/command.rb +13 -4
- data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +4 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/error.rb +16 -25
- data/bundler/lib/bundler/vendor/thor/lib/thor/group.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/invocation.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/nested_context.rb +2 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +20 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +33 -17
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/option.rb +27 -8
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +44 -6
- data/bundler/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +2 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/runner.rb +40 -30
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +26 -150
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/color.rb +1 -46
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/column_printer.rb +29 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/html.rb +0 -45
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/table_printer.rb +134 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/terminal.rb +42 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/wrapped_printer.rb +38 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/util.rb +8 -7
- data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor.rb +155 -8
- data/bundler/lib/bundler/vendor/tsort/.document +1 -0
- data/bundler/lib/bundler/vendor/tsort/lib/tsort.rb +3 -0
- data/bundler/lib/bundler/vendor/uri/.document +1 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +258 -132
- data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +1 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +2 -2
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +96 -32
- data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
- data/bundler/lib/bundler/vendored_net_http.rb +23 -0
- data/bundler/lib/bundler/vendored_persistent.rb +0 -4
- data/bundler/lib/bundler/vendored_securerandom.rb +14 -0
- data/bundler/lib/bundler/vendored_timeout.rb +12 -0
- data/bundler/lib/bundler/vendored_uri.rb +18 -1
- data/bundler/lib/bundler/version.rb +1 -1
- data/bundler/lib/bundler/vlad.rb +1 -1
- data/bundler/lib/bundler/yaml_serializer.rb +22 -13
- data/bundler/lib/bundler.rb +108 -81
- data/{bin → exe}/gem +2 -0
- data/{bin → exe}/update_rubygems +8 -6
- data/lib/rubygems/available_set.rb +6 -5
- data/lib/rubygems/basic_specification.rb +81 -44
- data/lib/rubygems/bundler_version_finder.rb +6 -6
- data/lib/rubygems/ci_detector.rb +75 -0
- data/lib/rubygems/command.rb +32 -36
- data/lib/rubygems/command_manager.rb +13 -12
- data/lib/rubygems/commands/build_command.rb +5 -13
- data/lib/rubygems/commands/cert_command.rb +6 -6
- data/lib/rubygems/commands/check_command.rb +10 -5
- data/lib/rubygems/commands/cleanup_command.rb +15 -26
- data/lib/rubygems/commands/contents_command.rb +21 -13
- data/lib/rubygems/commands/dependency_command.rb +7 -8
- data/lib/rubygems/commands/environment_command.rb +4 -5
- data/lib/rubygems/commands/exec_command.rb +3 -7
- data/lib/rubygems/commands/fetch_command.rb +17 -2
- data/lib/rubygems/commands/generate_index_command.rb +40 -74
- data/lib/rubygems/commands/help_command.rb +9 -8
- data/lib/rubygems/commands/info_command.rb +2 -2
- data/lib/rubygems/commands/install_command.rb +9 -20
- data/lib/rubygems/commands/list_command.rb +3 -2
- data/lib/rubygems/commands/lock_command.rb +2 -1
- data/lib/rubygems/commands/mirror_command.rb +1 -0
- data/lib/rubygems/commands/open_command.rb +2 -3
- data/lib/rubygems/commands/outdated_command.rb +1 -0
- data/lib/rubygems/commands/owner_command.rb +11 -10
- data/lib/rubygems/commands/pristine_command.rb +41 -29
- data/lib/rubygems/commands/push_command.rb +3 -2
- data/lib/rubygems/commands/query_command.rb +5 -5
- data/lib/rubygems/commands/rdoc_command.rb +4 -10
- data/lib/rubygems/commands/rebuild_command.rb +264 -0
- data/lib/rubygems/commands/search_command.rb +3 -2
- data/lib/rubygems/commands/server_command.rb +1 -0
- data/lib/rubygems/commands/setup_command.rb +41 -39
- data/lib/rubygems/commands/signin_command.rb +1 -0
- data/lib/rubygems/commands/signout_command.rb +1 -0
- data/lib/rubygems/commands/sources_command.rb +15 -14
- data/lib/rubygems/commands/specification_command.rb +16 -11
- data/lib/rubygems/commands/stale_command.rb +3 -2
- data/lib/rubygems/commands/uninstall_command.rb +25 -21
- data/lib/rubygems/commands/unpack_command.rb +12 -13
- data/lib/rubygems/commands/update_command.rb +26 -30
- data/lib/rubygems/commands/which_command.rb +2 -1
- data/lib/rubygems/commands/yank_command.rb +3 -2
- data/lib/rubygems/compatibility.rb +5 -6
- data/lib/rubygems/config_file.rb +95 -30
- data/lib/rubygems/core_ext/kernel_gem.rb +2 -4
- data/lib/rubygems/core_ext/kernel_require.rb +31 -50
- data/lib/rubygems/core_ext/kernel_warn.rb +4 -5
- data/lib/rubygems/core_ext/tcpsocket_init.rb +3 -1
- data/lib/rubygems/defaults.rb +27 -10
- data/lib/rubygems/dependency.rb +25 -30
- data/lib/rubygems/dependency_installer.rb +39 -43
- data/lib/rubygems/dependency_list.rb +3 -2
- data/lib/rubygems/deprecate.rb +80 -75
- data/lib/rubygems/doctor.rb +8 -7
- data/lib/rubygems/errors.rb +6 -8
- data/lib/rubygems/exceptions.rb +15 -5
- data/lib/rubygems/ext/build_error.rb +1 -0
- data/lib/rubygems/ext/builder.rb +24 -18
- data/lib/rubygems/ext/cargo_builder.rb +10 -25
- data/lib/rubygems/ext/configure_builder.rb +1 -0
- data/lib/rubygems/ext/ext_conf_builder.rb +3 -4
- data/lib/rubygems/ext/rake_builder.rb +5 -3
- data/lib/rubygems/ext.rb +1 -0
- data/lib/rubygems/gem_runner.rb +10 -5
- data/lib/rubygems/gemcutter_utilities/webauthn_listener/response.rb +163 -0
- data/lib/rubygems/gemcutter_utilities/webauthn_listener.rb +105 -0
- data/lib/rubygems/gemcutter_utilities/webauthn_poller.rb +80 -0
- data/lib/rubygems/gemcutter_utilities.rb +105 -43
- data/lib/rubygems/gemspec_helpers.rb +19 -0
- data/lib/rubygems/install_default_message.rb +1 -0
- data/lib/rubygems/install_message.rb +1 -0
- data/lib/rubygems/install_update_options.rb +20 -20
- data/lib/rubygems/installer.rb +112 -85
- data/lib/rubygems/installer_uninstaller_utils.rb +0 -2
- data/lib/rubygems/local_remote_options.rb +15 -17
- data/lib/rubygems/name_tuple.rb +8 -9
- data/lib/rubygems/package/digest_io.rb +2 -1
- data/lib/rubygems/package/file_source.rb +1 -0
- data/lib/rubygems/package/io_source.rb +1 -0
- data/lib/rubygems/package/old.rb +3 -2
- data/lib/rubygems/package/source.rb +1 -0
- data/lib/rubygems/package/tar_header.rb +64 -41
- data/lib/rubygems/package/tar_reader/entry.rb +24 -24
- data/lib/rubygems/package/tar_reader.rb +15 -10
- data/lib/rubygems/package/tar_writer.rb +22 -19
- data/lib/rubygems/package.rb +69 -47
- data/lib/rubygems/package_task.rb +3 -2
- data/lib/rubygems/path_support.rb +11 -11
- data/lib/rubygems/platform.rb +73 -50
- data/lib/rubygems/psych_tree.rb +1 -0
- data/lib/rubygems/query_utils.rb +13 -15
- data/lib/rubygems/rdoc.rb +1 -0
- data/lib/rubygems/remote_fetcher.rb +30 -22
- data/lib/rubygems/request/connection_pools.rb +3 -3
- data/lib/rubygems/request/http_pool.rb +1 -0
- data/lib/rubygems/request/https_pool.rb +1 -0
- data/lib/rubygems/request.rb +29 -25
- data/lib/rubygems/request_set/gem_dependency_api.rb +122 -124
- data/lib/rubygems/request_set/lockfile/parser.rb +11 -10
- data/lib/rubygems/request_set/lockfile/tokenizer.rb +22 -12
- data/lib/rubygems/request_set/lockfile.rb +7 -11
- data/lib/rubygems/request_set.rb +11 -9
- data/lib/rubygems/requirement.rb +16 -10
- data/lib/rubygems/resolver/activation_request.rb +5 -8
- data/lib/rubygems/resolver/api_set/gem_parser.rb +7 -3
- data/lib/rubygems/resolver/api_set.rb +16 -9
- data/lib/rubygems/resolver/api_specification.rb +2 -1
- data/lib/rubygems/resolver/best_set.rb +1 -28
- data/lib/rubygems/resolver/composed_set.rb +2 -1
- data/lib/rubygems/resolver/conflict.rb +5 -12
- data/lib/rubygems/resolver/current_set.rb +1 -0
- data/lib/rubygems/resolver/dependency_request.rb +1 -0
- data/lib/rubygems/resolver/git_set.rb +1 -0
- data/lib/rubygems/resolver/git_specification.rb +1 -0
- data/lib/rubygems/resolver/index_set.rb +5 -4
- data/lib/rubygems/resolver/index_specification.rb +3 -2
- data/lib/rubygems/resolver/installed_specification.rb +2 -1
- data/lib/rubygems/resolver/installer_set.rb +9 -7
- data/lib/rubygems/resolver/local_specification.rb +2 -1
- data/lib/rubygems/resolver/lock_set.rb +2 -1
- data/lib/rubygems/resolver/lock_specification.rb +1 -0
- data/lib/rubygems/resolver/requirement_list.rb +1 -0
- data/lib/rubygems/resolver/set.rb +1 -0
- data/lib/rubygems/resolver/source_set.rb +2 -0
- data/lib/rubygems/resolver/spec_specification.rb +8 -0
- data/lib/rubygems/resolver/specification.rb +1 -0
- data/lib/rubygems/resolver/stats.rb +1 -0
- data/lib/rubygems/resolver/vendor_set.rb +1 -0
- data/lib/rubygems/resolver/vendor_specification.rb +1 -0
- data/lib/rubygems/resolver.rb +11 -17
- data/lib/rubygems/s3_uri_signer.rb +13 -11
- data/lib/rubygems/safe_marshal/elements.rb +146 -0
- data/lib/rubygems/safe_marshal/reader.rb +308 -0
- data/lib/rubygems/safe_marshal/visitors/stream_printer.rb +31 -0
- data/lib/rubygems/safe_marshal/visitors/to_ruby.rb +415 -0
- data/lib/rubygems/safe_marshal/visitors/visitor.rb +74 -0
- data/lib/rubygems/safe_marshal.rb +74 -0
- data/lib/rubygems/safe_yaml.rb +14 -26
- data/lib/rubygems/security/policies.rb +37 -38
- data/lib/rubygems/security/policy.rb +8 -11
- data/lib/rubygems/security/signer.rb +12 -3
- data/lib/rubygems/security/trust_dir.rb +10 -11
- data/lib/rubygems/security.rb +12 -25
- data/lib/rubygems/security_option.rb +2 -1
- data/lib/rubygems/shellwords.rb +3 -0
- data/lib/rubygems/source/git.rb +10 -10
- data/lib/rubygems/source/installed.rb +4 -3
- data/lib/rubygems/source/local.rb +48 -48
- data/lib/rubygems/source/lock.rb +2 -3
- data/lib/rubygems/source/specific_file.rb +6 -4
- data/lib/rubygems/source/vendor.rb +1 -2
- data/lib/rubygems/source.rb +28 -22
- data/lib/rubygems/source_list.rb +8 -8
- data/lib/rubygems/spec_fetcher.rb +46 -56
- data/lib/rubygems/specification.rb +252 -309
- data/lib/rubygems/specification_policy.rb +120 -67
- data/lib/rubygems/specification_record.rb +212 -0
- data/lib/rubygems/stub_specification.rb +48 -22
- data/lib/rubygems/text.rb +1 -2
- data/lib/rubygems/uninstaller.rb +52 -32
- data/lib/rubygems/update_suggestion.rb +6 -19
- data/lib/rubygems/uri.rb +6 -6
- data/lib/rubygems/uri_formatter.rb +1 -1
- data/lib/rubygems/user_interaction.rb +23 -27
- data/lib/rubygems/util/licenses.rb +297 -35
- data/lib/rubygems/util/list.rb +4 -1
- data/lib/rubygems/util.rb +9 -6
- data/lib/rubygems/validator.rb +11 -10
- data/lib/rubygems/vendor/molinillo/.document +1 -0
- data/lib/rubygems/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +57 -0
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/delegates/specification_provider.rb +11 -11
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/action.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/log.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/set_payload.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/tag.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/vertex.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph.rb +2 -2
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/errors.rb +1 -1
- data/lib/rubygems/vendor/molinillo/lib/molinillo/gem_metadata.rb +6 -0
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/modules/specification_provider.rb +2 -2
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/modules/ui.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/resolution.rb +4 -4
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/resolver.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/state.rb +1 -1
- data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo.rb +2 -2
- data/lib/rubygems/vendor/net-http/.document +1 -0
- data/lib/rubygems/vendor/net-http/LICENSE.txt +22 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/backward.rb +40 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/exceptions.rb +34 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/generic_request.rb +414 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/header.rb +981 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/proxy_delta.rb +17 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/request.rb +88 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/requests.rb +425 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/response.rb +738 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/responses.rb +1174 -0
- data/lib/rubygems/vendor/net-http/lib/net/http/status.rb +84 -0
- data/lib/rubygems/vendor/net-http/lib/net/http.rb +2496 -0
- data/lib/rubygems/vendor/net-http/lib/net/https.rb +23 -0
- data/lib/rubygems/vendor/net-protocol/.document +1 -0
- data/lib/rubygems/vendor/net-protocol/LICENSE.txt +22 -0
- data/lib/rubygems/vendor/net-protocol/lib/net/protocol.rb +544 -0
- data/lib/rubygems/vendor/optparse/.document +1 -0
- data/lib/rubygems/vendor/optparse/lib/optparse/uri.rb +7 -0
- data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse.rb +49 -27
- data/lib/rubygems/vendor/resolv/.document +1 -0
- data/lib/rubygems/vendor/resolv/LICENSE.txt +22 -0
- data/lib/rubygems/vendor/resolv/lib/resolv.rb +3442 -0
- data/lib/rubygems/vendor/securerandom/.document +1 -0
- data/lib/rubygems/vendor/securerandom/LICENSE.txt +22 -0
- data/lib/rubygems/vendor/securerandom/lib/random/formatter.rb +373 -0
- data/lib/rubygems/vendor/securerandom/lib/securerandom.rb +96 -0
- data/lib/rubygems/vendor/timeout/.document +1 -0
- data/lib/rubygems/vendor/timeout/LICENSE.txt +22 -0
- data/lib/rubygems/vendor/timeout/lib/timeout.rb +199 -0
- data/lib/rubygems/vendor/tsort/.document +1 -0
- data/lib/rubygems/vendor/tsort/LICENSE.txt +22 -0
- data/lib/rubygems/{tsort → vendor/tsort}/lib/tsort.rb +5 -2
- data/lib/rubygems/vendor/uri/.document +1 -0
- data/lib/rubygems/vendor/uri/LICENSE.txt +22 -0
- data/lib/rubygems/vendor/uri/lib/uri/common.rb +855 -0
- data/lib/rubygems/vendor/uri/lib/uri/file.rb +100 -0
- data/lib/rubygems/vendor/uri/lib/uri/ftp.rb +267 -0
- data/lib/rubygems/vendor/uri/lib/uri/generic.rb +1588 -0
- data/lib/rubygems/vendor/uri/lib/uri/http.rb +125 -0
- data/lib/rubygems/vendor/uri/lib/uri/https.rb +23 -0
- data/lib/rubygems/vendor/uri/lib/uri/ldap.rb +261 -0
- data/lib/rubygems/vendor/uri/lib/uri/ldaps.rb +22 -0
- data/lib/rubygems/vendor/uri/lib/uri/mailto.rb +293 -0
- data/lib/rubygems/vendor/uri/lib/uri/rfc2396_parser.rb +539 -0
- data/lib/rubygems/vendor/uri/lib/uri/rfc3986_parser.rb +183 -0
- data/lib/rubygems/vendor/uri/lib/uri/version.rb +6 -0
- data/lib/rubygems/vendor/uri/lib/uri/ws.rb +83 -0
- data/lib/rubygems/vendor/uri/lib/uri/wss.rb +23 -0
- data/lib/rubygems/vendor/uri/lib/uri.rb +104 -0
- data/lib/rubygems/vendored_molinillo.rb +3 -0
- data/lib/rubygems/vendored_net_http.rb +5 -0
- data/lib/rubygems/vendored_optparse.rb +3 -0
- data/lib/rubygems/vendored_securerandom.rb +4 -0
- data/lib/rubygems/vendored_timeout.rb +5 -0
- data/lib/rubygems/vendored_tsort.rb +3 -0
- data/lib/rubygems/version.rb +38 -31
- data/lib/rubygems/version_option.rb +3 -5
- data/lib/rubygems/yaml_serializer.rb +98 -0
- data/lib/rubygems.rb +99 -72
- data/rubygems-update.gemspec +15 -8
- data/setup.rb +4 -1
- metadata +169 -267
- data/lib/rubygems/indexer.rb +0 -427
- data/lib/rubygems/mock_gem_ui.rb +0 -85
- data/lib/rubygems/optparse/lib/optparse/uri.rb +0 -7
- data/lib/rubygems/optparse.rb +0 -3
- data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +0 -57
- data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +0 -6
- data/lib/rubygems/resolver/molinillo.rb +0 -2
- data/lib/rubygems/tsort.rb +0 -3
- data/test/rubygems/alternate_cert.pem +0 -19
- data/test/rubygems/alternate_cert_32.pem +0 -19
- data/test/rubygems/alternate_key.pem +0 -27
- data/test/rubygems/bad_rake.rb +0 -2
- data/test/rubygems/bundler_test_gem.rb +0 -419
- data/test/rubygems/ca_cert.pem +0 -77
- data/test/rubygems/child_cert.pem +0 -19
- data/test/rubygems/child_cert_32.pem +0 -19
- data/test/rubygems/child_key.pem +0 -27
- data/test/rubygems/client.pem +0 -107
- data/test/rubygems/data/excon-0.7.7.gemspec.rz +0 -0
- data/test/rubygems/data/gem-private_key.pem +0 -27
- data/test/rubygems/data/gem-public_cert.pem +0 -20
- data/test/rubygems/data/null-required-ruby-version.gemspec.rz +0 -0
- data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
- data/test/rubygems/data/pry-0.4.7.gemspec.rz +0 -0
- data/test/rubygems/encrypted_private_key.pem +0 -30
- data/test/rubygems/expired_cert.pem +0 -19
- data/test/rubygems/fake_certlib/openssl.rb +0 -8
- data/test/rubygems/foo/discover.rb +0 -1
- data/test/rubygems/future_cert.pem +0 -19
- data/test/rubygems/future_cert_32.pem +0 -19
- data/test/rubygems/good_rake.rb +0 -2
- data/test/rubygems/grandchild_cert.pem +0 -19
- data/test/rubygems/grandchild_cert_32.pem +0 -19
- data/test/rubygems/grandchild_key.pem +0 -27
- data/test/rubygems/helper.rb +0 -1629
- data/test/rubygems/installer_test_case.rb +0 -247
- data/test/rubygems/invalid_client.pem +0 -49
- data/test/rubygems/invalid_issuer_cert.pem +0 -20
- data/test/rubygems/invalid_issuer_cert_32.pem +0 -20
- data/test/rubygems/invalid_key.pem +0 -27
- data/test/rubygems/invalid_signer_cert.pem +0 -19
- data/test/rubygems/invalid_signer_cert_32.pem +0 -19
- data/test/rubygems/invalidchild_cert.pem +0 -19
- data/test/rubygems/invalidchild_cert_32.pem +0 -19
- data/test/rubygems/invalidchild_key.pem +0 -27
- data/test/rubygems/package/tar_test_case.rb +0 -174
- data/test/rubygems/packages/Bluebie-legs-0.6.2.gem +0 -0
- data/test/rubygems/packages/ascii_binder-0.1.10.1.gem +0 -0
- data/test/rubygems/packages/ill-formatted-platform-1.0.0.10.gem +0 -0
- data/test/rubygems/plugin/exception/rubygems_plugin.rb +0 -3
- data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -4
- data/test/rubygems/plugin/standarderror/rubygems_plugin.rb +0 -3
- data/test/rubygems/private3072_key.pem +0 -40
- data/test/rubygems/private_ec_key.pem +0 -9
- data/test/rubygems/private_key.pem +0 -27
- data/test/rubygems/public3072_cert.pem +0 -25
- data/test/rubygems/public_cert.pem +0 -20
- data/test/rubygems/public_cert_32.pem +0 -19
- data/test/rubygems/public_key.pem +0 -9
- data/test/rubygems/rubygems/commands/crash_command.rb +0 -4
- data/test/rubygems/rubygems_plugin.rb +0 -23
- data/test/rubygems/sff/discover.rb +0 -1
- data/test/rubygems/simple_gem.rb +0 -67
- data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -7
- data/test/rubygems/specifications/foo-0.0.1-x86-mswin32.gemspec +0 -0
- data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +0 -12
- data/test/rubygems/ssl_cert.pem +0 -80
- data/test/rubygems/ssl_key.pem +0 -27
- data/test/rubygems/test_bundled_ca.rb +0 -60
- data/test/rubygems/test_config.rb +0 -27
- data/test/rubygems/test_deprecate.rb +0 -157
- data/test/rubygems/test_exit.rb +0 -17
- data/test/rubygems/test_gem.rb +0 -1766
- data/test/rubygems/test_gem_available_set.rb +0 -129
- data/test/rubygems/test_gem_bundler_version_finder.rb +0 -126
- data/test/rubygems/test_gem_command.rb +0 -400
- data/test/rubygems/test_gem_command_manager.rb +0 -399
- data/test/rubygems/test_gem_commands_build_command.rb +0 -737
- data/test/rubygems/test_gem_commands_cert_command.rb +0 -865
- data/test/rubygems/test_gem_commands_check_command.rb +0 -67
- data/test/rubygems/test_gem_commands_cleanup_command.rb +0 -291
- data/test/rubygems/test_gem_commands_contents_command.rb +0 -270
- data/test/rubygems/test_gem_commands_dependency_command.rb +0 -227
- data/test/rubygems/test_gem_commands_environment_command.rb +0 -167
- data/test/rubygems/test_gem_commands_exec_command.rb +0 -851
- data/test/rubygems/test_gem_commands_fetch_command.rb +0 -257
- data/test/rubygems/test_gem_commands_generate_index_command.rb +0 -80
- data/test/rubygems/test_gem_commands_help_command.rb +0 -93
- data/test/rubygems/test_gem_commands_info_command.rb +0 -69
- data/test/rubygems/test_gem_commands_install_command.rb +0 -1572
- data/test/rubygems/test_gem_commands_list_command.rb +0 -32
- data/test/rubygems/test_gem_commands_lock_command.rb +0 -66
- data/test/rubygems/test_gem_commands_mirror.rb +0 -19
- data/test/rubygems/test_gem_commands_open_command.rb +0 -97
- data/test/rubygems/test_gem_commands_outdated_command.rb +0 -49
- data/test/rubygems/test_gem_commands_owner_command.rb +0 -407
- data/test/rubygems/test_gem_commands_pristine_command.rb +0 -707
- data/test/rubygems/test_gem_commands_push_command.rb +0 -498
- data/test/rubygems/test_gem_commands_query_command.rb +0 -857
- data/test/rubygems/test_gem_commands_search_command.rb +0 -15
- data/test/rubygems/test_gem_commands_server_command.rb +0 -19
- data/test/rubygems/test_gem_commands_setup_command.rb +0 -474
- data/test/rubygems/test_gem_commands_signin_command.rb +0 -258
- data/test/rubygems/test_gem_commands_signout_command.rb +0 -30
- data/test/rubygems/test_gem_commands_sources_command.rb +0 -533
- data/test/rubygems/test_gem_commands_specification_command.rb +0 -276
- data/test/rubygems/test_gem_commands_stale_command.rb +0 -42
- data/test/rubygems/test_gem_commands_uninstall_command.rb +0 -521
- data/test/rubygems/test_gem_commands_unpack_command.rb +0 -223
- data/test/rubygems/test_gem_commands_update_command.rb +0 -835
- data/test/rubygems/test_gem_commands_which_command.rb +0 -84
- data/test/rubygems/test_gem_commands_yank_command.rb +0 -180
- data/test/rubygems/test_gem_config_file.rb +0 -516
- data/test/rubygems/test_gem_dependency.rb +0 -397
- data/test/rubygems/test_gem_dependency_installer.rb +0 -1155
- data/test/rubygems/test_gem_dependency_list.rb +0 -264
- data/test/rubygems/test_gem_dependency_resolution_error.rb +0 -26
- data/test/rubygems/test_gem_doctor.rb +0 -194
- data/test/rubygems/test_gem_ext_builder.rb +0 -336
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/.gitignore +0 -1
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/custom_name.gemspec +0 -8
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/Cargo.lock +0 -233
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/Cargo.toml +0 -10
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/src/lib.rs +0 -27
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/lib/custom_name.rb +0 -1
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/.gitignore +0 -1
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.lock +0 -247
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.toml +0 -10
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/rust_ruby_example.gemspec +0 -8
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/src/lib.rs +0 -51
- data/test/rubygems/test_gem_ext_cargo_builder.rb +0 -166
- data/test/rubygems/test_gem_ext_cargo_builder_link_flag_converter.rb +0 -33
- data/test/rubygems/test_gem_ext_cargo_builder_unit.rb +0 -60
- data/test/rubygems/test_gem_ext_cmake_builder.rb +0 -83
- data/test/rubygems/test_gem_ext_configure_builder.rb +0 -79
- data/test/rubygems/test_gem_ext_ext_conf_builder.rb +0 -229
- data/test/rubygems/test_gem_ext_rake_builder.rb +0 -112
- data/test/rubygems/test_gem_gem_runner.rb +0 -118
- data/test/rubygems/test_gem_gemcutter_utilities.rb +0 -276
- data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -59
- data/test/rubygems/test_gem_indexer.rb +0 -380
- data/test/rubygems/test_gem_install_update_options.rb +0 -207
- data/test/rubygems/test_gem_installer.rb +0 -2463
- data/test/rubygems/test_gem_local_remote_options.rb +0 -132
- data/test/rubygems/test_gem_name_tuple.rb +0 -42
- data/test/rubygems/test_gem_package.rb +0 -1190
- data/test/rubygems/test_gem_package_old.rb +0 -90
- data/test/rubygems/test_gem_package_tar_header.rb +0 -225
- data/test/rubygems/test_gem_package_tar_reader.rb +0 -134
- data/test/rubygems/test_gem_package_tar_reader_entry.rb +0 -297
- data/test/rubygems/test_gem_package_tar_writer.rb +0 -330
- data/test/rubygems/test_gem_package_task.rb +0 -117
- data/test/rubygems/test_gem_path_support.rb +0 -138
- data/test/rubygems/test_gem_platform.rb +0 -496
- data/test/rubygems/test_gem_rdoc.rb +0 -136
- data/test/rubygems/test_gem_remote_fetcher.rb +0 -1226
- data/test/rubygems/test_gem_request.rb +0 -541
- data/test/rubygems/test_gem_request_connection_pools.rb +0 -150
- data/test/rubygems/test_gem_request_set.rb +0 -671
- data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +0 -845
- data/test/rubygems/test_gem_request_set_lockfile.rb +0 -468
- data/test/rubygems/test_gem_request_set_lockfile_parser.rb +0 -543
- data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +0 -306
- data/test/rubygems/test_gem_requirement.rb +0 -504
- data/test/rubygems/test_gem_resolver.rb +0 -858
- data/test/rubygems/test_gem_resolver_activation_request.rb +0 -42
- data/test/rubygems/test_gem_resolver_api_set.rb +0 -209
- data/test/rubygems/test_gem_resolver_api_specification.rb +0 -166
- data/test/rubygems/test_gem_resolver_best_set.rb +0 -158
- data/test/rubygems/test_gem_resolver_composed_set.rb +0 -43
- data/test/rubygems/test_gem_resolver_conflict.rb +0 -81
- data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -82
- data/test/rubygems/test_gem_resolver_git_set.rb +0 -187
- data/test/rubygems/test_gem_resolver_git_specification.rb +0 -113
- data/test/rubygems/test_gem_resolver_index_set.rb +0 -87
- data/test/rubygems/test_gem_resolver_index_specification.rb +0 -92
- data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -46
- data/test/rubygems/test_gem_resolver_installer_set.rb +0 -319
- data/test/rubygems/test_gem_resolver_local_specification.rb +0 -43
- data/test/rubygems/test_gem_resolver_lock_set.rb +0 -61
- data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -97
- data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -18
- data/test/rubygems/test_gem_resolver_specification.rb +0 -62
- data/test/rubygems/test_gem_resolver_vendor_set.rb +0 -81
- data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -81
- data/test/rubygems/test_gem_security.rb +0 -340
- data/test/rubygems/test_gem_security_policy.rb +0 -535
- data/test/rubygems/test_gem_security_signer.rb +0 -217
- data/test/rubygems/test_gem_security_trust_dir.rb +0 -98
- data/test/rubygems/test_gem_silent_ui.rb +0 -122
- data/test/rubygems/test_gem_source.rb +0 -253
- data/test/rubygems/test_gem_source_fetch_problem.rb +0 -36
- data/test/rubygems/test_gem_source_git.rb +0 -309
- data/test/rubygems/test_gem_source_installed.rb +0 -34
- data/test/rubygems/test_gem_source_list.rb +0 -118
- data/test/rubygems/test_gem_source_local.rb +0 -106
- data/test/rubygems/test_gem_source_lock.rb +0 -112
- data/test/rubygems/test_gem_source_specific_file.rb +0 -75
- data/test/rubygems/test_gem_source_subpath_problem.rb +0 -49
- data/test/rubygems/test_gem_source_vendor.rb +0 -29
- data/test/rubygems/test_gem_spec_fetcher.rb +0 -337
- data/test/rubygems/test_gem_specification.rb +0 -3811
- data/test/rubygems/test_gem_stream_ui.rb +0 -224
- data/test/rubygems/test_gem_stub_specification.rb +0 -277
- data/test/rubygems/test_gem_text.rb +0 -102
- data/test/rubygems/test_gem_uninstaller.rb +0 -674
- data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -30
- data/test/rubygems/test_gem_update_suggestion.rb +0 -208
- data/test/rubygems/test_gem_uri.rb +0 -39
- data/test/rubygems/test_gem_uri_formatter.rb +0 -26
- data/test/rubygems/test_gem_util.rb +0 -90
- data/test/rubygems/test_gem_validator.rb +0 -42
- data/test/rubygems/test_gem_version.rb +0 -302
- data/test/rubygems/test_gem_version_option.rb +0 -164
- data/test/rubygems/test_kernel.rb +0 -123
- data/test/rubygems/test_project_sanity.rb +0 -20
- data/test/rubygems/test_remote_fetch_error.rb +0 -19
- data/test/rubygems/test_require.rb +0 -733
- data/test/rubygems/test_rubygems.rb +0 -74
- data/test/rubygems/utilities.rb +0 -393
- data/test/rubygems/wrong_key_cert.pem +0 -19
- data/test/rubygems/wrong_key_cert_32.pem +0 -19
- data/test/test_changelog_generator.rb +0 -17
- /data/{lib/rubygems/optparse → bundler/lib/bundler/vendor/connection_pool}/.document +0 -0
- /data/{lib/rubygems/tsort → bundler/lib/bundler/vendor/fileutils}/.document +0 -0
- /data/{lib/rubygems/tsort → bundler/lib/bundler/vendor/securerandom}/LICENSE.txt +0 -0
- /data/lib/rubygems/{resolver → vendor}/molinillo/LICENSE +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/COPYING +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optionparser.rb +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/ac.rb +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/date.rb +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/kwargs.rb +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/shellwords.rb +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/time.rb +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/version.rb +0 -0
@@ -1,515 +1,319 @@
|
|
1
|
-
.\" generated with
|
2
|
-
.\"
|
3
|
-
.
|
4
|
-
.TH "BUNDLE\-CONFIG" "1" "February 2023" "" ""
|
5
|
-
.
|
1
|
+
.\" generated with nRonn/v0.11.1
|
2
|
+
.\" https://github.com/n-ronn/nronn/tree/0.11.1
|
3
|
+
.TH "BUNDLE\-CONFIG" "1" "September 2024" ""
|
6
4
|
.SH "NAME"
|
7
5
|
\fBbundle\-config\fR \- Set bundler configuration options
|
8
|
-
.
|
9
6
|
.SH "SYNOPSIS"
|
10
7
|
\fBbundle config\fR list
|
11
|
-
.
|
12
8
|
.br
|
13
9
|
\fBbundle config\fR [get] NAME
|
14
|
-
.
|
15
10
|
.br
|
16
11
|
\fBbundle config\fR [set] NAME VALUE
|
17
|
-
.
|
18
12
|
.br
|
19
13
|
\fBbundle config\fR unset NAME
|
20
|
-
.
|
21
14
|
.SH "DESCRIPTION"
|
22
|
-
This command allows you to interact with Bundler
|
23
|
-
.
|
15
|
+
This command allows you to interact with Bundler's configuration system\.
|
24
16
|
.P
|
25
17
|
Bundler loads configuration settings in this order:
|
26
|
-
.
|
27
18
|
.IP "1." 4
|
28
19
|
Local config (\fB<project_root>/\.bundle/config\fR or \fB$BUNDLE_APP_CONFIG/config\fR)
|
29
|
-
.
|
30
20
|
.IP "2." 4
|
31
21
|
Environmental variables (\fBENV\fR)
|
32
|
-
.
|
33
22
|
.IP "3." 4
|
34
23
|
Global config (\fB~/\.bundle/config\fR)
|
35
|
-
.
|
36
24
|
.IP "4." 4
|
37
25
|
Bundler default config
|
38
|
-
.
|
39
26
|
.IP "" 0
|
40
|
-
.
|
41
27
|
.P
|
42
28
|
Executing \fBbundle config list\fR will print a list of all bundler configuration for the current bundle, and where that configuration was set\.
|
43
|
-
.
|
44
29
|
.P
|
45
30
|
Executing \fBbundle config get <name>\fR will print the value of that configuration setting, and where it was set\.
|
46
|
-
.
|
47
31
|
.P
|
48
32
|
Executing \fBbundle config set <name> <value>\fR defaults to setting \fBlocal\fR configuration if executing from within a local application, otherwise it will set \fBglobal\fR configuration\. See \fB\-\-local\fR and \fB\-\-global\fR options below\.
|
49
|
-
.
|
50
33
|
.P
|
51
34
|
Executing \fBbundle config set \-\-local <name> <value>\fR will set that configuration in the directory for the local application\. The configuration will be stored in \fB<project_root>/\.bundle/config\fR\. If \fBBUNDLE_APP_CONFIG\fR is set, the configuration will be stored in \fB$BUNDLE_APP_CONFIG/config\fR\.
|
52
|
-
.
|
53
35
|
.P
|
54
36
|
Executing \fBbundle config set \-\-global <name> <value>\fR will set that configuration to the value specified for all bundles executed as the current user\. The configuration will be stored in \fB~/\.bundle/config\fR\. If \fIname\fR already is set, \fIname\fR will be overridden and user will be warned\.
|
55
|
-
.
|
56
37
|
.P
|
57
38
|
Executing \fBbundle config unset <name>\fR will delete the configuration in both local and global sources\.
|
58
|
-
.
|
59
39
|
.P
|
60
40
|
Executing \fBbundle config unset \-\-global <name>\fR will delete the configuration only from the user configuration\.
|
61
|
-
.
|
62
41
|
.P
|
63
42
|
Executing \fBbundle config unset \-\-local <name>\fR will delete the configuration only from the local application\.
|
64
|
-
.
|
65
43
|
.P
|
66
44
|
Executing bundle with the \fBBUNDLE_IGNORE_CONFIG\fR environment variable set will cause it to ignore all configuration\.
|
67
|
-
.
|
68
45
|
.SH "REMEMBERING OPTIONS"
|
69
|
-
Flags passed to \fBbundle install\fR or the Bundler runtime, such as \fB\-\-path foo\fR or \fB\-\-without production\fR, are remembered between commands and saved to your local application
|
70
|
-
.
|
46
|
+
Flags passed to \fBbundle install\fR or the Bundler runtime, such as \fB\-\-path foo\fR or \fB\-\-without production\fR, are remembered between commands and saved to your local application's configuration (normally, \fB\./\.bundle/config\fR)\.
|
71
47
|
.P
|
72
|
-
However, this will be changed in bundler 3, so it
|
73
|
-
.
|
48
|
+
However, this will be changed in bundler 3, so it's better not to rely on this behavior\. If these options must be remembered, it's better to set them using \fBbundle config\fR (e\.g\., \fBbundle config set \-\-local path foo\fR)\.
|
74
49
|
.P
|
75
50
|
The options that can be configured are:
|
76
|
-
.
|
77
51
|
.TP
|
78
52
|
\fBbin\fR
|
79
|
-
Creates a directory (defaults to \fB~/bin\fR) and place any executables from the gem there\. These executables run in Bundler
|
80
|
-
.
|
53
|
+
Creates a directory (defaults to \fB~/bin\fR) and place any executables from the gem there\. These executables run in Bundler's context\. If used, you might add this directory to your environment's \fBPATH\fR variable\. For instance, if the \fBrails\fR gem comes with a \fBrails\fR executable, this flag will create a \fBbin/rails\fR executable that ensures that all referred dependencies will be resolved using the bundled gems\.
|
81
54
|
.TP
|
82
55
|
\fBdeployment\fR
|
83
|
-
In deployment mode, Bundler will
|
84
|
-
.
|
56
|
+
In deployment mode, Bundler will 'roll\-out' the bundle for \fBproduction\fR use\. Please check carefully if you want to have this option enabled in \fBdevelopment\fR or \fBtest\fR environments\.
|
85
57
|
.TP
|
86
58
|
\fBonly\fR
|
87
59
|
A space\-separated list of groups to install only gems of the specified groups\.
|
88
|
-
.
|
89
60
|
.TP
|
90
61
|
\fBpath\fR
|
91
|
-
The location to install the specified gems to\. This defaults to Rubygems
|
92
|
-
.
|
62
|
+
The location to install the specified gems to\. This defaults to Rubygems' setting\. Bundler shares this location with Rubygems, \fBgem install \|\.\|\.\|\.\fR will have gem installed there, too\. Therefore, gems installed without a \fB\-\-path \|\.\|\.\|\.\fR setting will show up by calling \fBgem list\fR\. Accordingly, gems installed to other locations will not get listed\.
|
93
63
|
.TP
|
94
64
|
\fBwithout\fR
|
95
65
|
A space\-separated list of groups referencing gems to skip during installation\.
|
96
|
-
.
|
97
66
|
.TP
|
98
67
|
\fBwith\fR
|
99
68
|
A space\-separated list of \fBoptional\fR groups referencing gems to include during installation\.
|
100
|
-
.
|
101
69
|
.SH "BUILD OPTIONS"
|
102
70
|
You can use \fBbundle config\fR to give Bundler the flags to pass to the gem installer every time bundler tries to install a particular gem\.
|
103
|
-
.
|
104
71
|
.P
|
105
72
|
A very common example, the \fBmysql\fR gem, requires Snow Leopard users to pass configuration flags to \fBgem install\fR to specify where to find the \fBmysql_config\fR executable\.
|
106
|
-
.
|
107
73
|
.IP "" 4
|
108
|
-
.
|
109
74
|
.nf
|
110
|
-
|
111
75
|
gem install mysql \-\- \-\-with\-mysql\-config=/usr/local/mysql/bin/mysql_config
|
112
|
-
.
|
113
76
|
.fi
|
114
|
-
.
|
115
77
|
.IP "" 0
|
116
|
-
.
|
117
78
|
.P
|
118
79
|
Since the specific location of that executable can change from machine to machine, you can specify these flags on a per\-machine basis\.
|
119
|
-
.
|
120
80
|
.IP "" 4
|
121
|
-
.
|
122
81
|
.nf
|
123
|
-
|
124
82
|
bundle config set \-\-global build\.mysql \-\-with\-mysql\-config=/usr/local/mysql/bin/mysql_config
|
125
|
-
.
|
126
83
|
.fi
|
127
|
-
.
|
128
84
|
.IP "" 0
|
129
|
-
.
|
130
85
|
.P
|
131
86
|
After running this command, every time bundler needs to install the \fBmysql\fR gem, it will pass along the flags you specified\.
|
132
|
-
.
|
133
87
|
.SH "CONFIGURATION KEYS"
|
134
88
|
Configuration keys in bundler have two forms: the canonical form and the environment variable form\.
|
135
|
-
.
|
136
89
|
.P
|
137
|
-
For instance, passing the \fB\-\-without\fR flag to bundle install(1) \fIbundle\-install\.1\.html\fR prevents Bundler from installing certain groups specified in the Gemfile(5)\. Bundler persists this value in \fBapp/\.bundle/config\fR so that calls to \fBBundler\.setup\fR do not try to find gems from the \fBGemfile\fR that you didn
|
138
|
-
.
|
90
|
+
For instance, passing the \fB\-\-without\fR flag to bundle install(1) \fIbundle\-install\.1\.html\fR prevents Bundler from installing certain groups specified in the Gemfile(5)\. Bundler persists this value in \fBapp/\.bundle/config\fR so that calls to \fBBundler\.setup\fR do not try to find gems from the \fBGemfile\fR that you didn't install\. Additionally, subsequent calls to bundle install(1) \fIbundle\-install\.1\.html\fR remember this setting and skip those groups\.
|
139
91
|
.P
|
140
92
|
The canonical form of this configuration is \fB"without"\fR\. To convert the canonical form to the environment variable form, capitalize it, and prepend \fBBUNDLE_\fR\. The environment variable form of \fB"without"\fR is \fBBUNDLE_WITHOUT\fR\.
|
141
|
-
.
|
142
93
|
.P
|
143
94
|
Any periods in the configuration keys must be replaced with two underscores when setting it via environment variables\. The configuration key \fBlocal\.rack\fR becomes the environment variable \fBBUNDLE_LOCAL__RACK\fR\.
|
144
|
-
.
|
145
95
|
.SH "LIST OF AVAILABLE KEYS"
|
146
96
|
The following is a list of all configuration keys and their purpose\. You can learn more about their operation in bundle install(1) \fIbundle\-install\.1\.html\fR\.
|
147
|
-
.
|
148
|
-
.IP "\(bu" 4
|
149
|
-
\fBallow_deployment_source_credential_changes\fR (\fBBUNDLE_ALLOW_DEPLOYMENT_SOURCE_CREDENTIAL_CHANGES\fR): When in deployment mode, allow changing the credentials to a gem\'s source\. Ex: \fBhttps://some\.host\.com/gems/path/\fR \-> \fBhttps://user_name:password@some\.host\.com/gems/path\fR
|
150
|
-
.
|
151
97
|
.IP "\(bu" 4
|
152
98
|
\fBallow_offline_install\fR (\fBBUNDLE_ALLOW_OFFLINE_INSTALL\fR): Allow Bundler to use cached data when installing without network access\.
|
153
|
-
.
|
154
99
|
.IP "\(bu" 4
|
155
100
|
\fBauto_clean_without_path\fR (\fBBUNDLE_AUTO_CLEAN_WITHOUT_PATH\fR): Automatically run \fBbundle clean\fR after installing when an explicit \fBpath\fR has not been set and Bundler is not installing into the system gems\.
|
156
|
-
.
|
157
101
|
.IP "\(bu" 4
|
158
102
|
\fBauto_install\fR (\fBBUNDLE_AUTO_INSTALL\fR): Automatically run \fBbundle install\fR when gems are missing\.
|
159
|
-
.
|
160
103
|
.IP "\(bu" 4
|
161
104
|
\fBbin\fR (\fBBUNDLE_BIN\fR): Install executables from gems in the bundle to the specified directory\. Defaults to \fBfalse\fR\.
|
162
|
-
.
|
163
105
|
.IP "\(bu" 4
|
164
106
|
\fBcache_all\fR (\fBBUNDLE_CACHE_ALL\fR): Cache all gems, including path and git gems\. This needs to be explicitly configured on bundler 1 and bundler 2, but will be the default on bundler 3\.
|
165
|
-
.
|
166
107
|
.IP "\(bu" 4
|
167
108
|
\fBcache_all_platforms\fR (\fBBUNDLE_CACHE_ALL_PLATFORMS\fR): Cache gems for all platforms\.
|
168
|
-
.
|
169
109
|
.IP "\(bu" 4
|
170
110
|
\fBcache_path\fR (\fBBUNDLE_CACHE_PATH\fR): The directory that bundler will place cached gems in when running \fBbundle package\fR, and that bundler will look in when installing gems\. Defaults to \fBvendor/cache\fR\.
|
171
|
-
.
|
172
111
|
.IP "\(bu" 4
|
173
112
|
\fBclean\fR (\fBBUNDLE_CLEAN\fR): Whether Bundler should run \fBbundle clean\fR automatically after \fBbundle install\fR\.
|
174
|
-
.
|
175
113
|
.IP "\(bu" 4
|
176
114
|
\fBconsole\fR (\fBBUNDLE_CONSOLE\fR): The console that \fBbundle console\fR starts\. Defaults to \fBirb\fR\.
|
177
|
-
.
|
178
115
|
.IP "\(bu" 4
|
179
116
|
\fBdefault_install_uses_path\fR (\fBBUNDLE_DEFAULT_INSTALL_USES_PATH\fR): Whether a \fBbundle install\fR without an explicit \fB\-\-path\fR argument defaults to installing gems in \fB\.bundle\fR\.
|
180
|
-
.
|
181
117
|
.IP "\(bu" 4
|
182
118
|
\fBdeployment\fR (\fBBUNDLE_DEPLOYMENT\fR): Disallow changes to the \fBGemfile\fR\. When the \fBGemfile\fR is changed and the lockfile has not been updated, running Bundler commands will be blocked\.
|
183
|
-
.
|
184
119
|
.IP "\(bu" 4
|
185
120
|
\fBdisable_checksum_validation\fR (\fBBUNDLE_DISABLE_CHECKSUM_VALIDATION\fR): Allow installing gems even if they do not match the checksum provided by RubyGems\.
|
186
|
-
.
|
187
121
|
.IP "\(bu" 4
|
188
122
|
\fBdisable_exec_load\fR (\fBBUNDLE_DISABLE_EXEC_LOAD\fR): Stop Bundler from using \fBload\fR to launch an executable in\-process in \fBbundle exec\fR\.
|
189
|
-
.
|
190
123
|
.IP "\(bu" 4
|
191
124
|
\fBdisable_local_branch_check\fR (\fBBUNDLE_DISABLE_LOCAL_BRANCH_CHECK\fR): Allow Bundler to use a local git override without a branch specified in the Gemfile\.
|
192
|
-
.
|
193
125
|
.IP "\(bu" 4
|
194
126
|
\fBdisable_local_revision_check\fR (\fBBUNDLE_DISABLE_LOCAL_REVISION_CHECK\fR): Allow Bundler to use a local git override without checking if the revision present in the lockfile is present in the repository\.
|
195
|
-
.
|
196
127
|
.IP "\(bu" 4
|
197
|
-
\fBdisable_shared_gems\fR (\fBBUNDLE_DISABLE_SHARED_GEMS\fR): Stop Bundler from accessing gems installed to RubyGems
|
198
|
-
.
|
128
|
+
\fBdisable_shared_gems\fR (\fBBUNDLE_DISABLE_SHARED_GEMS\fR): Stop Bundler from accessing gems installed to RubyGems' normal location\.
|
199
129
|
.IP "\(bu" 4
|
200
130
|
\fBdisable_version_check\fR (\fBBUNDLE_DISABLE_VERSION_CHECK\fR): Stop Bundler from checking if a newer Bundler version is available on rubygems\.org\.
|
201
|
-
.
|
202
131
|
.IP "\(bu" 4
|
203
|
-
\fBforce_ruby_platform\fR (\fBBUNDLE_FORCE_RUBY_PLATFORM\fR): Ignore the current machine
|
204
|
-
.
|
132
|
+
\fBforce_ruby_platform\fR (\fBBUNDLE_FORCE_RUBY_PLATFORM\fR): Ignore the current machine's platform and install only \fBruby\fR platform gems\. As a result, gems with native extensions will be compiled from source\.
|
205
133
|
.IP "\(bu" 4
|
206
134
|
\fBfrozen\fR (\fBBUNDLE_FROZEN\fR): Disallow changes to the \fBGemfile\fR\. When the \fBGemfile\fR is changed and the lockfile has not been updated, running Bundler commands will be blocked\. Defaults to \fBtrue\fR when \fB\-\-deployment\fR is used\.
|
207
|
-
.
|
208
135
|
.IP "\(bu" 4
|
209
136
|
\fBgem\.github_username\fR (\fBBUNDLE_GEM__GITHUB_USERNAME\fR): Sets a GitHub username or organization to be used in \fBREADME\fR file when you create a new gem via \fBbundle gem\fR command\. It can be overridden by passing an explicit \fB\-\-github\-username\fR flag to \fBbundle gem\fR\.
|
210
|
-
.
|
211
137
|
.IP "\(bu" 4
|
212
138
|
\fBgem\.push_key\fR (\fBBUNDLE_GEM__PUSH_KEY\fR): Sets the \fB\-\-key\fR parameter for \fBgem push\fR when using the \fBrake release\fR command with a private gemstash server\.
|
213
|
-
.
|
214
139
|
.IP "\(bu" 4
|
215
140
|
\fBgemfile\fR (\fBBUNDLE_GEMFILE\fR): The name of the file that bundler should use as the \fBGemfile\fR\. This location of this file also sets the root of the project, which is used to resolve relative paths in the \fBGemfile\fR, among other things\. By default, bundler will search up from the current working directory until it finds a \fBGemfile\fR\.
|
216
|
-
.
|
217
141
|
.IP "\(bu" 4
|
218
142
|
\fBglobal_gem_cache\fR (\fBBUNDLE_GLOBAL_GEM_CACHE\fR): Whether Bundler should cache all gems globally, rather than locally to the installing Ruby installation\.
|
219
|
-
.
|
220
143
|
.IP "\(bu" 4
|
221
144
|
\fBignore_funding_requests\fR (\fBBUNDLE_IGNORE_FUNDING_REQUESTS\fR): When set, no funding requests will be printed\.
|
222
|
-
.
|
223
145
|
.IP "\(bu" 4
|
224
146
|
\fBignore_messages\fR (\fBBUNDLE_IGNORE_MESSAGES\fR): When set, no post install messages will be printed\. To silence a single gem, use dot notation like \fBignore_messages\.httparty true\fR\.
|
225
|
-
.
|
226
147
|
.IP "\(bu" 4
|
227
148
|
\fBinit_gems_rb\fR (\fBBUNDLE_INIT_GEMS_RB\fR): Generate a \fBgems\.rb\fR instead of a \fBGemfile\fR when running \fBbundle init\fR\.
|
228
|
-
.
|
229
149
|
.IP "\(bu" 4
|
230
150
|
\fBjobs\fR (\fBBUNDLE_JOBS\fR): The number of gems Bundler can install in parallel\. Defaults to the number of available processors\.
|
231
|
-
.
|
232
151
|
.IP "\(bu" 4
|
233
152
|
\fBno_install\fR (\fBBUNDLE_NO_INSTALL\fR): Whether \fBbundle package\fR should skip installing gems\.
|
234
|
-
.
|
235
153
|
.IP "\(bu" 4
|
236
154
|
\fBno_prune\fR (\fBBUNDLE_NO_PRUNE\fR): Whether Bundler should leave outdated gems unpruned when caching\.
|
237
|
-
.
|
238
155
|
.IP "\(bu" 4
|
239
156
|
\fBonly\fR (\fBBUNDLE_ONLY\fR): A space\-separated list of groups to install only gems of the specified groups\.
|
240
|
-
.
|
241
157
|
.IP "\(bu" 4
|
242
158
|
\fBpath\fR (\fBBUNDLE_PATH\fR): The location on disk where all gems in your bundle will be located regardless of \fB$GEM_HOME\fR or \fB$GEM_PATH\fR values\. Bundle gems not found in this location will be installed by \fBbundle install\fR\. Defaults to \fBGem\.dir\fR\. When \-\-deployment is used, defaults to vendor/bundle\.
|
243
|
-
.
|
244
159
|
.IP "\(bu" 4
|
245
160
|
\fBpath\.system\fR (\fBBUNDLE_PATH__SYSTEM\fR): Whether Bundler will install gems into the default system path (\fBGem\.dir\fR)\.
|
246
|
-
.
|
247
161
|
.IP "\(bu" 4
|
248
162
|
\fBpath_relative_to_cwd\fR (\fBBUNDLE_PATH_RELATIVE_TO_CWD\fR) Makes \fB\-\-path\fR relative to the CWD instead of the \fBGemfile\fR\.
|
249
|
-
.
|
250
163
|
.IP "\(bu" 4
|
251
|
-
\fBplugins\fR (\fBBUNDLE_PLUGINS\fR): Enable Bundler
|
252
|
-
.
|
164
|
+
\fBplugins\fR (\fBBUNDLE_PLUGINS\fR): Enable Bundler's experimental plugin system\.
|
253
165
|
.IP "\(bu" 4
|
254
166
|
\fBprefer_patch\fR (BUNDLE_PREFER_PATCH): Prefer updating only to next patch version during updates\. Makes \fBbundle update\fR calls equivalent to \fBbundler update \-\-patch\fR\.
|
255
|
-
.
|
256
167
|
.IP "\(bu" 4
|
257
168
|
\fBprint_only_version_number\fR (\fBBUNDLE_PRINT_ONLY_VERSION_NUMBER\fR): Print only version number from \fBbundler \-\-version\fR\.
|
258
|
-
.
|
259
169
|
.IP "\(bu" 4
|
260
170
|
\fBredirect\fR (\fBBUNDLE_REDIRECT\fR): The number of redirects allowed for network requests\. Defaults to \fB5\fR\.
|
261
|
-
.
|
262
171
|
.IP "\(bu" 4
|
263
172
|
\fBretry\fR (\fBBUNDLE_RETRY\fR): The number of times to retry failed network requests\. Defaults to \fB3\fR\.
|
264
|
-
.
|
265
173
|
.IP "\(bu" 4
|
266
174
|
\fBsetup_makes_kernel_gem_public\fR (\fBBUNDLE_SETUP_MAKES_KERNEL_GEM_PUBLIC\fR): Have \fBBundler\.setup\fR make the \fBKernel#gem\fR method public, even though RubyGems declares it as private\.
|
267
|
-
.
|
268
175
|
.IP "\(bu" 4
|
269
176
|
\fBshebang\fR (\fBBUNDLE_SHEBANG\fR): The program name that should be invoked for generated binstubs\. Defaults to the ruby install name used to generate the binstub\.
|
270
|
-
.
|
271
177
|
.IP "\(bu" 4
|
272
178
|
\fBsilence_deprecations\fR (\fBBUNDLE_SILENCE_DEPRECATIONS\fR): Whether Bundler should silence deprecation warnings for behavior that will be changed in the next major version\.
|
273
|
-
.
|
274
179
|
.IP "\(bu" 4
|
275
180
|
\fBsilence_root_warning\fR (\fBBUNDLE_SILENCE_ROOT_WARNING\fR): Silence the warning Bundler prints when installing gems as root\.
|
276
|
-
.
|
277
181
|
.IP "\(bu" 4
|
278
182
|
\fBssl_ca_cert\fR (\fBBUNDLE_SSL_CA_CERT\fR): Path to a designated CA certificate file or folder containing multiple certificates for trusted CAs in PEM format\.
|
279
|
-
.
|
280
183
|
.IP "\(bu" 4
|
281
184
|
\fBssl_client_cert\fR (\fBBUNDLE_SSL_CLIENT_CERT\fR): Path to a designated file containing a X\.509 client certificate and key in PEM format\.
|
282
|
-
.
|
283
185
|
.IP "\(bu" 4
|
284
186
|
\fBssl_verify_mode\fR (\fBBUNDLE_SSL_VERIFY_MODE\fR): The SSL verification mode Bundler uses when making HTTPS requests\. Defaults to verify peer\.
|
285
|
-
.
|
286
|
-
.IP "\(bu" 4
|
287
|
-
\fBsuppress_install_using_messages\fR (\fBBUNDLE_SUPPRESS_INSTALL_USING_MESSAGES\fR): Avoid printing \fBUsing \.\.\.\fR messages during installation when the version of a gem has not changed\.
|
288
|
-
.
|
289
187
|
.IP "\(bu" 4
|
290
188
|
\fBsystem_bindir\fR (\fBBUNDLE_SYSTEM_BINDIR\fR): The location where RubyGems installs binstubs\. Defaults to \fBGem\.bindir\fR\.
|
291
|
-
.
|
292
189
|
.IP "\(bu" 4
|
293
190
|
\fBtimeout\fR (\fBBUNDLE_TIMEOUT\fR): The seconds allowed before timing out for network requests\. Defaults to \fB10\fR\.
|
294
|
-
.
|
295
191
|
.IP "\(bu" 4
|
296
192
|
\fBupdate_requires_all_flag\fR (\fBBUNDLE_UPDATE_REQUIRES_ALL_FLAG\fR): Require passing \fB\-\-all\fR to \fBbundle update\fR when everything should be updated, and disallow passing no options to \fBbundle update\fR\.
|
297
|
-
.
|
298
193
|
.IP "\(bu" 4
|
299
194
|
\fBuser_agent\fR (\fBBUNDLE_USER_AGENT\fR): The custom user agent fragment Bundler includes in API requests\.
|
300
|
-
.
|
195
|
+
.IP "\(bu" 4
|
196
|
+
\fBversion\fR (\fBBUNDLE_VERSION\fR): The version of Bundler to use when running under Bundler environment\. Defaults to \fBlockfile\fR\. You can also specify \fBsystem\fR or \fBx\.y\.z\fR\. \fBlockfile\fR will use the Bundler version specified in the \fBGemfile\.lock\fR, \fBsystem\fR will use the system version of Bundler, and \fBx\.y\.z\fR will use the specified version of Bundler\.
|
301
197
|
.IP "\(bu" 4
|
302
198
|
\fBwith\fR (\fBBUNDLE_WITH\fR): A \fB:\fR\-separated list of groups whose gems bundler should install\.
|
303
|
-
.
|
304
199
|
.IP "\(bu" 4
|
305
200
|
\fBwithout\fR (\fBBUNDLE_WITHOUT\fR): A \fB:\fR\-separated list of groups whose gems bundler should not install\.
|
306
|
-
.
|
307
201
|
.IP "" 0
|
308
|
-
.
|
309
202
|
.P
|
310
203
|
In general, you should set these settings per\-application by using the applicable flag to the bundle install(1) \fIbundle\-install\.1\.html\fR or bundle cache(1) \fIbundle\-cache\.1\.html\fR command\.
|
311
|
-
.
|
312
204
|
.P
|
313
205
|
You can set them globally either via environment variables or \fBbundle config\fR, whichever is preferable for your setup\. If you use both, environment variables will take preference over global settings\.
|
314
|
-
.
|
315
206
|
.SH "LOCAL GIT REPOS"
|
316
207
|
Bundler also allows you to work against a git repository locally instead of using the remote version\. This can be achieved by setting up a local override:
|
317
|
-
.
|
318
208
|
.IP "" 4
|
319
|
-
.
|
320
209
|
.nf
|
321
|
-
|
322
210
|
bundle config set \-\-local local\.GEM_NAME /path/to/local/git/repository
|
323
|
-
.
|
324
211
|
.fi
|
325
|
-
.
|
326
212
|
.IP "" 0
|
327
|
-
.
|
328
213
|
.P
|
329
214
|
For example, in order to use a local Rack repository, a developer could call:
|
330
|
-
.
|
331
215
|
.IP "" 4
|
332
|
-
.
|
333
216
|
.nf
|
334
|
-
|
335
217
|
bundle config set \-\-local local\.rack ~/Work/git/rack
|
336
|
-
.
|
337
218
|
.fi
|
338
|
-
.
|
339
219
|
.IP "" 0
|
340
|
-
.
|
341
220
|
.P
|
342
|
-
Now instead of checking out the remote git repository, the local override will be used\. Similar to a path source, every time the local git repository change, changes will be automatically picked up by Bundler\. This means a commit in the local git repo will update the revision in the \fBGemfile\.lock\fR to the local git repo revision\. This requires the same attention as git submodules\. Before pushing to the remote, you need to ensure the local override was pushed, otherwise you may point to a commit that only exists in your local machine\. You
|
343
|
-
.
|
221
|
+
Now instead of checking out the remote git repository, the local override will be used\. Similar to a path source, every time the local git repository change, changes will be automatically picked up by Bundler\. This means a commit in the local git repo will update the revision in the \fBGemfile\.lock\fR to the local git repo revision\. This requires the same attention as git submodules\. Before pushing to the remote, you need to ensure the local override was pushed, otherwise you may point to a commit that only exists in your local machine\. You'll also need to CGI escape your usernames and passwords as well\.
|
344
222
|
.P
|
345
|
-
Bundler does many checks to ensure a developer won
|
346
|
-
.
|
223
|
+
Bundler does many checks to ensure a developer won't work with invalid references\. Particularly, we force a developer to specify a branch in the \fBGemfile\fR in order to use this feature\. If the branch specified in the \fBGemfile\fR and the current branch in the local git repository do not match, Bundler will abort\. This ensures that a developer is always working against the correct branches, and prevents accidental locking to a different branch\.
|
347
224
|
.P
|
348
225
|
Finally, Bundler also ensures that the current revision in the \fBGemfile\.lock\fR exists in the local git repository\. By doing this, Bundler forces you to fetch the latest changes in the remotes\.
|
349
|
-
.
|
350
226
|
.SH "MIRRORS OF GEM SOURCES"
|
351
227
|
Bundler supports overriding gem sources with mirrors\. This allows you to configure rubygems\.org as the gem source in your Gemfile while still using your mirror to fetch gems\.
|
352
|
-
.
|
353
228
|
.IP "" 4
|
354
|
-
.
|
355
229
|
.nf
|
356
|
-
|
357
230
|
bundle config set \-\-global mirror\.SOURCE_URL MIRROR_URL
|
358
|
-
.
|
359
231
|
.fi
|
360
|
-
.
|
361
232
|
.IP "" 0
|
362
|
-
.
|
363
233
|
.P
|
364
234
|
For example, to use a mirror of https://rubygems\.org hosted at https://example\.org:
|
365
|
-
.
|
366
235
|
.IP "" 4
|
367
|
-
.
|
368
236
|
.nf
|
369
|
-
|
370
237
|
bundle config set \-\-global mirror\.https://rubygems\.org https://example\.org
|
371
|
-
.
|
372
238
|
.fi
|
373
|
-
.
|
374
239
|
.IP "" 0
|
375
|
-
.
|
376
240
|
.P
|
377
241
|
Each mirror also provides a fallback timeout setting\. If the mirror does not respond within the fallback timeout, Bundler will try to use the original server instead of the mirror\.
|
378
|
-
.
|
379
242
|
.IP "" 4
|
380
|
-
.
|
381
243
|
.nf
|
382
|
-
|
383
244
|
bundle config set \-\-global mirror\.SOURCE_URL\.fallback_timeout TIMEOUT
|
384
|
-
.
|
385
245
|
.fi
|
386
|
-
.
|
387
246
|
.IP "" 0
|
388
|
-
.
|
389
247
|
.P
|
390
248
|
For example, to fall back to rubygems\.org after 3 seconds:
|
391
|
-
.
|
392
249
|
.IP "" 4
|
393
|
-
.
|
394
250
|
.nf
|
395
|
-
|
396
251
|
bundle config set \-\-global mirror\.https://rubygems\.org\.fallback_timeout 3
|
397
|
-
.
|
398
252
|
.fi
|
399
|
-
.
|
400
253
|
.IP "" 0
|
401
|
-
.
|
402
254
|
.P
|
403
255
|
The default fallback timeout is 0\.1 seconds, but the setting can currently only accept whole seconds (for example, 1, 15, or 30)\.
|
404
|
-
.
|
405
256
|
.SH "CREDENTIALS FOR GEM SOURCES"
|
406
257
|
Bundler allows you to configure credentials for any gem source, which allows you to avoid putting secrets into your Gemfile\.
|
407
|
-
.
|
408
258
|
.IP "" 4
|
409
|
-
.
|
410
259
|
.nf
|
411
|
-
|
412
260
|
bundle config set \-\-global SOURCE_HOSTNAME USERNAME:PASSWORD
|
413
|
-
.
|
414
261
|
.fi
|
415
|
-
.
|
416
262
|
.IP "" 0
|
417
|
-
.
|
418
263
|
.P
|
419
264
|
For example, to save the credentials of user \fBclaudette\fR for the gem source at \fBgems\.longerous\.com\fR, you would run:
|
420
|
-
.
|
421
265
|
.IP "" 4
|
422
|
-
.
|
423
266
|
.nf
|
424
|
-
|
425
267
|
bundle config set \-\-global gems\.longerous\.com claudette:s00pers3krit
|
426
|
-
.
|
427
268
|
.fi
|
428
|
-
.
|
429
269
|
.IP "" 0
|
430
|
-
.
|
431
270
|
.P
|
432
271
|
Or you can set the credentials as an environment variable like this:
|
433
|
-
.
|
434
272
|
.IP "" 4
|
435
|
-
.
|
436
273
|
.nf
|
437
|
-
|
438
274
|
export BUNDLE_GEMS__LONGEROUS__COM="claudette:s00pers3krit"
|
439
|
-
.
|
440
275
|
.fi
|
441
|
-
.
|
442
276
|
.IP "" 0
|
443
|
-
.
|
444
277
|
.P
|
445
278
|
For gems with a git source with HTTP(S) URL you can specify credentials like so:
|
446
|
-
.
|
447
279
|
.IP "" 4
|
448
|
-
.
|
449
280
|
.nf
|
450
|
-
|
451
281
|
bundle config set \-\-global https://github\.com/rubygems/rubygems\.git username:password
|
452
|
-
.
|
453
282
|
.fi
|
454
|
-
.
|
455
283
|
.IP "" 0
|
456
|
-
.
|
457
284
|
.P
|
458
285
|
Or you can set the credentials as an environment variable like so:
|
459
|
-
.
|
460
286
|
.IP "" 4
|
461
|
-
.
|
462
287
|
.nf
|
463
|
-
|
464
288
|
export BUNDLE_GITHUB__COM=username:password
|
465
|
-
.
|
466
289
|
.fi
|
467
|
-
.
|
468
290
|
.IP "" 0
|
469
|
-
.
|
470
291
|
.P
|
471
292
|
This is especially useful for private repositories on hosts such as GitHub, where you can use personal OAuth tokens:
|
472
|
-
.
|
473
293
|
.IP "" 4
|
474
|
-
.
|
475
294
|
.nf
|
476
|
-
|
477
295
|
export BUNDLE_GITHUB__COM=abcd0123generatedtoken:x\-oauth\-basic
|
478
|
-
.
|
479
296
|
.fi
|
480
|
-
.
|
481
297
|
.IP "" 0
|
482
|
-
.
|
483
298
|
.P
|
484
299
|
Note that any configured credentials will be redacted by informative commands such as \fBbundle config list\fR or \fBbundle config get\fR, unless you use the \fB\-\-parseable\fR flag\. This is to avoid unintentionally leaking credentials when copy\-pasting bundler output\.
|
485
|
-
.
|
486
300
|
.P
|
487
301
|
Also note that to guarantee a sane mapping between valid environment variable names and valid host names, bundler makes the following transformations:
|
488
|
-
.
|
489
302
|
.IP "\(bu" 4
|
490
|
-
Any \fB\-\fR characters in a host name are mapped to a triple
|
491
|
-
.
|
303
|
+
Any \fB\-\fR characters in a host name are mapped to a triple underscore (\fB___\fR) in the corresponding environment variable\.
|
492
304
|
.IP "\(bu" 4
|
493
|
-
Any \fB\.\fR characters in a host name are mapped to a double
|
494
|
-
.
|
305
|
+
Any \fB\.\fR characters in a host name are mapped to a double underscore (\fB__\fR) in the corresponding environment variable\.
|
495
306
|
.IP "" 0
|
496
|
-
.
|
497
307
|
.P
|
498
|
-
This means that if you have a gem server named \fBmy\.gem\-host\.com\fR, you
|
499
|
-
.
|
308
|
+
This means that if you have a gem server named \fBmy\.gem\-host\.com\fR, you'll need to use the \fBBUNDLE_MY__GEM___HOST__COM\fR variable to configure credentials for it through ENV\.
|
500
309
|
.SH "CONFIGURE BUNDLER DIRECTORIES"
|
501
|
-
Bundler
|
502
|
-
.
|
310
|
+
Bundler's home, cache and plugin directories and config file can be configured through environment variables\. The default location for Bundler's home directory is \fB~/\.bundle\fR, which all directories inherit from by default\. The following outlines the available environment variables and their default values
|
503
311
|
.IP "" 4
|
504
|
-
.
|
505
312
|
.nf
|
506
|
-
|
507
313
|
BUNDLE_USER_HOME : $HOME/\.bundle
|
508
314
|
BUNDLE_USER_CACHE : $BUNDLE_USER_HOME/cache
|
509
315
|
BUNDLE_USER_CONFIG : $BUNDLE_USER_HOME/config
|
510
316
|
BUNDLE_USER_PLUGIN : $BUNDLE_USER_HOME/plugin
|
511
|
-
.
|
512
317
|
.fi
|
513
|
-
.
|
514
318
|
.IP "" 0
|
515
319
|
|
@@ -137,9 +137,6 @@ the environment variable `BUNDLE_LOCAL__RACK`.
|
|
137
137
|
The following is a list of all configuration keys and their purpose. You can
|
138
138
|
learn more about their operation in [bundle install(1)](bundle-install.1.html).
|
139
139
|
|
140
|
-
* `allow_deployment_source_credential_changes` (`BUNDLE_ALLOW_DEPLOYMENT_SOURCE_CREDENTIAL_CHANGES`):
|
141
|
-
When in deployment mode, allow changing the credentials to a gem's source.
|
142
|
-
Ex: `https://some.host.com/gems/path/` -> `https://user_name:password@some.host.com/gems/path`
|
143
140
|
* `allow_offline_install` (`BUNDLE_ALLOW_OFFLINE_INSTALL`):
|
144
141
|
Allow Bundler to use cached data when installing without network access.
|
145
142
|
* `auto_clean_without_path` (`BUNDLE_AUTO_CLEAN_WITHOUT_PATH`):
|
@@ -265,9 +262,6 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
|
|
265
262
|
* `ssl_verify_mode` (`BUNDLE_SSL_VERIFY_MODE`):
|
266
263
|
The SSL verification mode Bundler uses when making HTTPS requests.
|
267
264
|
Defaults to verify peer.
|
268
|
-
* `suppress_install_using_messages` (`BUNDLE_SUPPRESS_INSTALL_USING_MESSAGES`):
|
269
|
-
Avoid printing `Using ...` messages during installation when the version of
|
270
|
-
a gem has not changed.
|
271
265
|
* `system_bindir` (`BUNDLE_SYSTEM_BINDIR`):
|
272
266
|
The location where RubyGems installs binstubs. Defaults to `Gem.bindir`.
|
273
267
|
* `timeout` (`BUNDLE_TIMEOUT`):
|
@@ -277,6 +271,12 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
|
|
277
271
|
and disallow passing no options to `bundle update`.
|
278
272
|
* `user_agent` (`BUNDLE_USER_AGENT`):
|
279
273
|
The custom user agent fragment Bundler includes in API requests.
|
274
|
+
* `version` (`BUNDLE_VERSION`):
|
275
|
+
The version of Bundler to use when running under Bundler environment.
|
276
|
+
Defaults to `lockfile`. You can also specify `system` or `x.y.z`.
|
277
|
+
`lockfile` will use the Bundler version specified in the `Gemfile.lock`,
|
278
|
+
`system` will use the system version of Bundler, and `x.y.z` will use
|
279
|
+
the specified version of Bundler.
|
280
280
|
* `with` (`BUNDLE_WITH`):
|
281
281
|
A `:`-separated list of groups whose gems bundler should install.
|
282
282
|
* `without` (`BUNDLE_WITHOUT`):
|
@@ -385,10 +385,10 @@ copy-pasting bundler output.
|
|
385
385
|
Also note that to guarantee a sane mapping between valid environment variable
|
386
386
|
names and valid host names, bundler makes the following transformations:
|
387
387
|
|
388
|
-
* Any `-` characters in a host name are mapped to a triple
|
388
|
+
* Any `-` characters in a host name are mapped to a triple underscore (`___`) in the
|
389
389
|
corresponding environment variable.
|
390
390
|
|
391
|
-
* Any `.` characters in a host name are mapped to a double
|
391
|
+
* Any `.` characters in a host name are mapped to a double underscore (`__`) in the
|
392
392
|
corresponding environment variable.
|
393
393
|
|
394
394
|
This means that if you have a gem server named `my.gem-host.com`, you'll need to
|
@@ -397,7 +397,7 @@ through ENV.
|
|
397
397
|
|
398
398
|
## CONFIGURE BUNDLER DIRECTORIES
|
399
399
|
|
400
|
-
Bundler's home,
|
400
|
+
Bundler's home, cache and plugin directories and config file can be configured
|
401
401
|
through environment variables. The default location for Bundler's home directory is
|
402
402
|
`~/.bundle`, which all directories inherit from by default. The following
|
403
403
|
outlines the available environment variables and their default values
|
@@ -1,53 +1,35 @@
|
|
1
|
-
.\" generated with
|
2
|
-
.\"
|
3
|
-
.
|
4
|
-
.TH "BUNDLE\-CONSOLE" "1" "February 2023" "" ""
|
5
|
-
.
|
1
|
+
.\" generated with nRonn/v0.11.1
|
2
|
+
.\" https://github.com/n-ronn/nronn/tree/0.11.1
|
3
|
+
.TH "BUNDLE\-CONSOLE" "1" "September 2024" ""
|
6
4
|
.SH "NAME"
|
7
5
|
\fBbundle\-console\fR \- Deprecated way to open an IRB session with the bundle pre\-loaded
|
8
|
-
.
|
9
6
|
.SH "SYNOPSIS"
|
10
7
|
\fBbundle console\fR [GROUP]
|
11
|
-
.
|
12
8
|
.SH "DESCRIPTION"
|
13
9
|
Starts an interactive Ruby console session in the context of the current bundle\.
|
14
|
-
.
|
15
10
|
.P
|
16
11
|
If no \fBGROUP\fR is specified, all gems in the \fBdefault\fR group in the Gemfile(5) \fIhttps://bundler\.io/man/gemfile\.5\.html\fR are preliminarily loaded\.
|
17
|
-
.
|
18
12
|
.P
|
19
13
|
If \fBGROUP\fR is specified, all gems in the given group in the Gemfile in addition to the gems in \fBdefault\fR group are loaded\. Even if the given group does not exist in the Gemfile, IRB console starts without any warning or error\.
|
20
|
-
.
|
21
14
|
.P
|
22
15
|
The environment variable \fBBUNDLE_CONSOLE\fR or \fBbundle config set console\fR can be used to change the shell from the following:
|
23
|
-
.
|
24
16
|
.IP "\(bu" 4
|
25
17
|
\fBirb\fR (default)
|
26
|
-
.
|
27
18
|
.IP "\(bu" 4
|
28
19
|
\fBpry\fR (https://github\.com/pry/pry)
|
29
|
-
.
|
30
20
|
.IP "\(bu" 4
|
31
21
|
\fBripl\fR (https://github\.com/cldwalker/ripl)
|
32
|
-
.
|
33
22
|
.IP "" 0
|
34
|
-
.
|
35
23
|
.P
|
36
24
|
\fBbundle console\fR uses irb by default\. An alternative Pry or Ripl can be used with \fBbundle console\fR by adjusting the \fBconsole\fR Bundler setting\. Also make sure that \fBpry\fR or \fBripl\fR is in your Gemfile\.
|
37
|
-
.
|
38
25
|
.SH "EXAMPLE"
|
39
|
-
.
|
40
26
|
.nf
|
41
|
-
|
42
27
|
$ bundle config set console pry
|
43
28
|
$ bundle console
|
44
|
-
Resolving dependencies
|
29
|
+
Resolving dependencies\|\.\|\.\|\.
|
45
30
|
[1] pry(main)>
|
46
|
-
.
|
47
31
|
.fi
|
48
|
-
.
|
49
32
|
.SH "NOTES"
|
50
33
|
This command was deprecated in Bundler 2\.1 and will be removed in 3\.0\. Use \fBbin/console\fR script, which can be generated by \fBbundle gem <NAME>\fR\.
|
51
|
-
.
|
52
34
|
.SH "SEE ALSO"
|
53
35
|
Gemfile(5) \fIhttps://bundler\.io/man/gemfile\.5\.html\fR
|