rubygems-update 3.5.5 → 3.6.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +606 -1
- data/CODE_OF_CONDUCT.md +79 -28
- data/Manifest.txt +114 -73
- data/README.md +16 -11
- data/bundler/CHANGELOG.md +506 -6
- data/bundler/README.md +2 -2
- data/bundler/bundler.gemspec +2 -2
- data/bundler/lib/bundler/build_metadata.rb +2 -2
- data/bundler/lib/bundler/checksum.rb +22 -12
- data/bundler/lib/bundler/cli/add.rb +3 -1
- data/bundler/lib/bundler/cli/binstubs.rb +1 -1
- data/bundler/lib/bundler/cli/check.rb +3 -3
- data/bundler/lib/bundler/cli/console.rb +8 -10
- data/bundler/lib/bundler/cli/doctor/diagnose.rb +167 -0
- data/bundler/lib/bundler/cli/doctor/ssl.rb +249 -0
- data/bundler/lib/bundler/cli/doctor.rb +27 -151
- data/bundler/lib/bundler/cli/exec.rb +1 -0
- data/bundler/lib/bundler/cli/fund.rb +1 -1
- data/bundler/lib/bundler/cli/gem.rb +13 -17
- data/bundler/lib/bundler/cli/info.rb +6 -6
- data/bundler/lib/bundler/cli/inject.rb +3 -3
- data/bundler/lib/bundler/cli/install.rb +14 -5
- data/bundler/lib/bundler/cli/issue.rb +3 -3
- data/bundler/lib/bundler/cli/lock.rb +32 -11
- data/bundler/lib/bundler/cli/outdated.rb +22 -22
- data/bundler/lib/bundler/cli/plugin.rb +3 -2
- data/bundler/lib/bundler/cli/pristine.rb +1 -1
- data/bundler/lib/bundler/cli/show.rb +3 -3
- data/bundler/lib/bundler/cli.rb +51 -107
- data/bundler/lib/bundler/compact_index_client/cache.rb +48 -73
- data/bundler/lib/bundler/compact_index_client/cache_file.rb +0 -5
- data/bundler/lib/bundler/compact_index_client/parser.rb +84 -0
- data/bundler/lib/bundler/compact_index_client/updater.rb +2 -12
- data/bundler/lib/bundler/compact_index_client.rb +51 -80
- data/bundler/lib/bundler/constants.rb +8 -1
- data/bundler/lib/bundler/current_ruby.rb +23 -33
- data/bundler/lib/bundler/definition.rb +485 -313
- data/bundler/lib/bundler/dependency.rb +92 -46
- data/bundler/lib/bundler/dsl.rb +135 -101
- data/bundler/lib/bundler/endpoint_specification.rb +30 -3
- data/bundler/lib/bundler/env.rb +1 -1
- data/bundler/lib/bundler/environment_preserver.rb +5 -23
- data/bundler/lib/bundler/errors.rb +53 -5
- data/bundler/lib/bundler/feature_flag.rb +3 -6
- data/bundler/lib/bundler/fetcher/compact_index.rb +16 -25
- data/bundler/lib/bundler/fetcher/downloader.rb +1 -1
- data/bundler/lib/bundler/fetcher.rb +14 -7
- data/bundler/lib/bundler/force_platform.rb +0 -2
- data/bundler/lib/bundler/friendly_errors.rb +1 -1
- data/bundler/lib/bundler/gem_helper.rb +1 -1
- data/bundler/lib/bundler/gem_helpers.rb +36 -19
- data/bundler/lib/bundler/gem_version_promoter.rb +42 -40
- data/bundler/lib/bundler/injector.rb +14 -16
- data/bundler/lib/bundler/inline.rb +42 -17
- data/bundler/lib/bundler/installer/gem_installer.rb +4 -3
- data/bundler/lib/bundler/installer/parallel_installer.rb +3 -2
- data/bundler/lib/bundler/installer/standalone.rb +2 -5
- data/bundler/lib/bundler/installer.rb +17 -41
- data/bundler/lib/bundler/lazy_specification.rb +117 -46
- data/bundler/lib/bundler/lockfile_generator.rb +1 -1
- data/bundler/lib/bundler/lockfile_parser.rb +18 -7
- data/bundler/lib/bundler/man/bundle-add.1 +44 -27
- data/bundler/lib/bundler/man/bundle-add.1.ronn +52 -23
- data/bundler/lib/bundler/man/bundle-binstubs.1 +9 -6
- data/bundler/lib/bundler/man/bundle-binstubs.1.ronn +6 -3
- data/bundler/lib/bundler/man/bundle-cache.1 +32 -4
- data/bundler/lib/bundler/man/bundle-cache.1.ronn +31 -2
- data/bundler/lib/bundler/man/bundle-check.1 +7 -5
- data/bundler/lib/bundler/man/bundle-check.1.ronn +7 -2
- data/bundler/lib/bundler/man/bundle-clean.1 +3 -3
- data/bundler/lib/bundler/man/bundle-config.1 +11 -15
- data/bundler/lib/bundler/man/bundle-config.1.ronn +12 -15
- data/bundler/lib/bundler/man/bundle-console.1 +4 -6
- data/bundler/lib/bundler/man/bundle-console.1.ronn +2 -7
- data/bundler/lib/bundler/man/bundle-doctor.1 +4 -4
- data/bundler/lib/bundler/man/bundle-doctor.1.ronn +1 -1
- data/bundler/lib/bundler/man/bundle-env.1 +9 -0
- data/bundler/lib/bundler/man/bundle-env.1.ronn +10 -0
- data/bundler/lib/bundler/man/bundle-exec.1 +9 -6
- data/bundler/lib/bundler/man/bundle-exec.1.ronn +6 -3
- data/bundler/lib/bundler/man/bundle-fund.1 +22 -0
- data/bundler/lib/bundler/man/bundle-fund.1.ronn +25 -0
- data/bundler/lib/bundler/man/bundle-gem.1 +25 -7
- data/bundler/lib/bundler/man/bundle-gem.1.ronn +38 -6
- data/bundler/lib/bundler/man/bundle-help.1 +3 -3
- data/bundler/lib/bundler/man/bundle-info.1 +7 -4
- data/bundler/lib/bundler/man/bundle-info.1.ronn +6 -2
- data/bundler/lib/bundler/man/bundle-init.1 +5 -5
- data/bundler/lib/bundler/man/bundle-init.1.ronn +3 -2
- data/bundler/lib/bundler/man/bundle-inject.1 +12 -4
- data/bundler/lib/bundler/man/bundle-inject.1.ronn +9 -1
- data/bundler/lib/bundler/man/bundle-install.1 +19 -16
- data/bundler/lib/bundler/man/bundle-install.1.ronn +24 -20
- data/bundler/lib/bundler/man/bundle-issue.1 +45 -0
- data/bundler/lib/bundler/man/bundle-issue.1.ronn +37 -0
- data/bundler/lib/bundler/man/bundle-licenses.1 +9 -0
- data/bundler/lib/bundler/man/bundle-licenses.1.ronn +10 -0
- data/bundler/lib/bundler/man/bundle-list.1 +3 -3
- data/bundler/lib/bundler/man/bundle-list.1.ronn +4 -1
- data/bundler/lib/bundler/man/bundle-lock.1 +23 -8
- data/bundler/lib/bundler/man/bundle-lock.1.ronn +25 -4
- data/bundler/lib/bundler/man/bundle-open.1 +4 -4
- data/bundler/lib/bundler/man/bundle-open.1.ronn +2 -1
- data/bundler/lib/bundler/man/bundle-outdated.1 +10 -7
- data/bundler/lib/bundler/man/bundle-outdated.1.ronn +8 -4
- data/bundler/lib/bundler/man/bundle-platform.1 +3 -3
- data/bundler/lib/bundler/man/bundle-plugin.1 +9 -6
- data/bundler/lib/bundler/man/bundle-plugin.1.ronn +7 -3
- data/bundler/lib/bundler/man/bundle-pristine.1 +3 -3
- data/bundler/lib/bundler/man/bundle-pristine.1.ronn +1 -1
- data/bundler/lib/bundler/man/bundle-remove.1 +3 -3
- data/bundler/lib/bundler/man/bundle-remove.1.ronn +1 -1
- data/bundler/lib/bundler/man/bundle-show.1 +7 -4
- data/bundler/lib/bundler/man/bundle-show.1.ronn +4 -0
- data/bundler/lib/bundler/man/bundle-update.1 +15 -9
- data/bundler/lib/bundler/man/bundle-update.1.ronn +14 -6
- data/bundler/lib/bundler/man/bundle-version.1 +3 -3
- data/bundler/lib/bundler/man/bundle-viz.1 +6 -6
- data/bundler/lib/bundler/man/bundle-viz.1.ronn +7 -3
- data/bundler/lib/bundler/man/bundle.1 +3 -3
- data/bundler/lib/bundler/man/gemfile.5 +7 -5
- data/bundler/lib/bundler/man/gemfile.5.ronn +8 -2
- data/bundler/lib/bundler/man/index.txt +4 -0
- data/bundler/lib/bundler/match_metadata.rb +13 -0
- data/bundler/lib/bundler/materialization.rb +59 -0
- data/bundler/lib/bundler/mirror.rb +3 -3
- data/bundler/lib/bundler/plugin/api/source.rb +5 -4
- data/bundler/lib/bundler/plugin/events.rb +24 -0
- data/bundler/lib/bundler/plugin/index.rb +5 -1
- data/bundler/lib/bundler/plugin/installer/path.rb +26 -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 +21 -2
- data/bundler/lib/bundler/process_lock.rb +10 -14
- data/bundler/lib/bundler/remote_specification.rb +6 -1
- data/bundler/lib/bundler/resolver/base.rb +14 -3
- data/bundler/lib/bundler/resolver/candidate.rb +18 -27
- data/bundler/lib/bundler/resolver/package.rb +20 -3
- data/bundler/lib/bundler/resolver/spec_group.rb +22 -27
- data/bundler/lib/bundler/resolver/strategy.rb +40 -0
- data/bundler/lib/bundler/resolver.rb +114 -50
- data/bundler/lib/bundler/retry.rb +1 -1
- data/bundler/lib/bundler/ruby_dsl.rb +12 -3
- data/bundler/lib/bundler/ruby_version.rb +7 -1
- data/bundler/lib/bundler/rubygems_ext.rb +282 -125
- data/bundler/lib/bundler/rubygems_gem_installer.rb +40 -5
- data/bundler/lib/bundler/rubygems_integration.rb +29 -67
- data/bundler/lib/bundler/runtime.rb +48 -35
- data/bundler/lib/bundler/self_manager.rb +27 -7
- data/bundler/lib/bundler/settings.rb +32 -21
- data/bundler/lib/bundler/setup.rb +6 -0
- data/bundler/lib/bundler/shared_helpers.rb +39 -21
- data/bundler/lib/bundler/source/gemspec.rb +1 -4
- data/bundler/lib/bundler/source/git/git_proxy.rb +23 -6
- data/bundler/lib/bundler/source/git.rb +113 -41
- data/bundler/lib/bundler/source/metadata.rb +4 -3
- data/bundler/lib/bundler/source/path.rb +7 -18
- data/bundler/lib/bundler/source/rubygems/remote.rb +12 -4
- data/bundler/lib/bundler/source/rubygems.rb +54 -48
- data/bundler/lib/bundler/source.rb +2 -0
- data/bundler/lib/bundler/source_list.rb +53 -7
- data/bundler/lib/bundler/spec_set.rb +187 -88
- data/bundler/lib/bundler/stub_specification.rb +29 -2
- data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +77 -29
- data/bundler/lib/bundler/templates/newgem/Gemfile.tt +1 -3
- data/bundler/lib/bundler/templates/newgem/README.md.tt +7 -3
- data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +15 -15
- data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +8 -7
- data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +0 -5
- data/bundler/lib/bundler/ui/shell.rb +24 -2
- data/bundler/lib/bundler/ui/silent.rb +12 -1
- data/bundler/lib/bundler/uri_credentials_filter.rb +3 -3
- data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +53 -3
- 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 +11 -0
- data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +15 -13
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +68 -30
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/basic_package_source.rb +4 -24
- 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/strategy.rb +42 -0
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb +20 -8
- data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb +17 -29
- data/bundler/lib/bundler/vendor/securerandom/COPYING +56 -0
- data/bundler/lib/bundler/vendor/securerandom/lib/securerandom.rb +102 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +3 -5
- data/bundler/lib/bundler/vendor/thor/lib/thor/group.rb +11 -0
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +1 -4
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/option.rb +2 -2
- data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +2 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +9 -9
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/html.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/shell/table_printer.rb +5 -21
- data/bundler/lib/bundler/vendor/thor/lib/thor/util.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
- data/bundler/lib/bundler/vendor/thor/lib/thor.rb +11 -0
- data/bundler/lib/bundler/vendor/uri/COPYING +56 -0
- data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +43 -16
- data/bundler/lib/bundler/vendor/uri/lib/uri/file.rb +3 -3
- data/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb +1 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +28 -37
- data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +2 -2
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +16 -9
- data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +26 -3
- data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
- data/bundler/lib/bundler/vendor/uri/lib/uri.rb +9 -9
- data/bundler/lib/bundler/vendored_net_http.rb +20 -5
- data/bundler/lib/bundler/vendored_securerandom.rb +12 -0
- data/bundler/lib/bundler/vendored_timeout.rb +7 -3
- data/bundler/lib/bundler/vendored_uri.rb +18 -1
- data/bundler/lib/bundler/version.rb +1 -1
- data/bundler/lib/bundler/yaml_serializer.rb +12 -7
- data/bundler/lib/bundler.rb +89 -51
- data/{CONTRIBUTING.md → doc/rubygems/CONTRIBUTING.md} +10 -14
- data/{POLICIES.md → doc/rubygems/POLICIES.md} +81 -12
- data/exe/update_rubygems +1 -1
- data/lib/rubygems/basic_specification.rb +43 -10
- data/lib/rubygems/bundler_version_finder.rb +1 -1
- data/lib/rubygems/command.rb +1 -4
- data/lib/rubygems/command_manager.rb +5 -6
- data/lib/rubygems/commands/build_command.rb +2 -11
- data/lib/rubygems/commands/cleanup_command.rb +3 -13
- data/lib/rubygems/commands/contents_command.rb +17 -10
- data/lib/rubygems/commands/environment_command.rb +5 -0
- data/lib/rubygems/commands/exec_command.rb +18 -11
- data/lib/rubygems/commands/fetch_command.rb +14 -0
- data/lib/rubygems/commands/help_command.rb +2 -2
- data/lib/rubygems/commands/install_command.rb +0 -4
- data/lib/rubygems/commands/pristine_command.rb +30 -17
- data/lib/rubygems/commands/push_command.rb +31 -6
- data/lib/rubygems/commands/rdoc_command.rb +3 -10
- data/lib/rubygems/commands/rebuild_command.rb +262 -0
- data/lib/rubygems/commands/setup_command.rb +11 -16
- data/lib/rubygems/commands/sources_command.rb +2 -2
- data/lib/rubygems/commands/uninstall_command.rb +9 -4
- data/lib/rubygems/commands/unpack_command.rb +0 -6
- data/lib/rubygems/commands/update_command.rb +10 -17
- data/lib/rubygems/config_file.rb +45 -16
- data/lib/rubygems/core_ext/kernel_warn.rb +2 -6
- data/lib/rubygems/defaults.rb +6 -6
- data/lib/rubygems/dependency.rb +12 -16
- data/lib/rubygems/dependency_list.rb +1 -1
- data/lib/rubygems/deprecate.rb +79 -77
- data/lib/rubygems/errors.rb +2 -1
- data/lib/rubygems/exceptions.rb +2 -9
- data/lib/rubygems/ext/builder.rb +21 -8
- data/lib/rubygems/ext/cargo_builder.rb +12 -26
- data/lib/rubygems/ext/cmake_builder.rb +7 -2
- data/lib/rubygems/ext/configure_builder.rb +7 -2
- data/lib/rubygems/ext/ext_conf_builder.rb +9 -5
- data/lib/rubygems/ext/rake_builder.rb +7 -4
- data/lib/rubygems/gem_runner.rb +9 -0
- data/lib/rubygems/gemcutter_utilities/webauthn_listener.rb +1 -1
- data/lib/rubygems/gemcutter_utilities/webauthn_poller.rb +3 -1
- data/lib/rubygems/gemcutter_utilities.rb +52 -26
- data/lib/rubygems/gemspec_helpers.rb +19 -0
- data/lib/rubygems/install_update_options.rb +5 -0
- data/lib/rubygems/installer.rb +31 -40
- data/lib/rubygems/local_remote_options.rb +8 -8
- data/lib/rubygems/package/tar_header.rb +31 -4
- data/lib/rubygems/package/tar_reader/entry.rb +1 -5
- data/lib/rubygems/package/tar_writer.rb +5 -4
- data/lib/rubygems/package.rb +13 -8
- data/lib/rubygems/platform.rb +7 -5
- data/lib/rubygems/psych_tree.rb +4 -0
- data/lib/rubygems/query_utils.rb +2 -2
- data/lib/rubygems/rdoc.rb +16 -3
- data/lib/rubygems/remote_fetcher.rb +3 -4
- data/lib/rubygems/request.rb +5 -5
- data/lib/rubygems/request_set/gem_dependency_api.rb +1 -1
- data/lib/rubygems/request_set.rb +1 -1
- data/lib/rubygems/requirement.rb +16 -12
- data/lib/rubygems/resolver/activation_request.rb +1 -1
- data/lib/rubygems/resolver/api_set/gem_parser.rb +2 -5
- data/lib/rubygems/resolver/api_set.rb +13 -8
- data/lib/rubygems/resolver/best_set.rb +0 -28
- data/lib/rubygems/resolver/composed_set.rb +3 -3
- data/lib/rubygems/resolver/git_set.rb +0 -1
- data/lib/rubygems/resolver/index_set.rb +2 -2
- data/lib/rubygems/resolver/spec_specification.rb +7 -0
- data/lib/rubygems/resolver.rb +7 -7
- data/lib/rubygems/s3_uri_signer.rb +3 -3
- data/lib/rubygems/safe_marshal/reader.rb +31 -14
- data/lib/rubygems/safe_marshal/visitors/to_ruby.rb +29 -16
- data/lib/rubygems/safe_yaml.rb +10 -1
- data/lib/rubygems/security.rb +1 -1
- data/lib/rubygems/source/git.rb +22 -17
- data/lib/rubygems/source/installed.rb +3 -1
- data/lib/rubygems/source/local.rb +8 -4
- data/lib/rubygems/source/specific_file.rb +5 -3
- data/lib/rubygems/source.rb +10 -8
- data/lib/rubygems/source_list.rb +1 -1
- data/lib/rubygems/spec_fetcher.rb +47 -15
- data/lib/rubygems/specification.rb +107 -180
- data/lib/rubygems/specification_policy.rb +33 -13
- data/lib/rubygems/specification_record.rb +212 -0
- data/lib/rubygems/stub_specification.rb +32 -10
- data/lib/rubygems/target_rbconfig.rb +50 -0
- data/lib/rubygems/uninstaller.rb +42 -22
- data/lib/rubygems/uri.rb +6 -6
- data/lib/rubygems/util/licenses.rb +97 -1
- data/lib/rubygems/util.rb +1 -1
- 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/COPYING +56 -0
- data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/generic_request.rb +9 -9
- data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/header.rb +3 -3
- data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/request.rb +3 -3
- data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/requests.rb +35 -30
- data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/response.rb +2 -2
- data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/responses.rb +6 -6
- data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/status.rb +1 -1
- data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http.rb +135 -51
- data/lib/rubygems/{net-http → vendor/net-http}/lib/net/https.rb +1 -1
- data/lib/rubygems/vendor/optparse/COPYING +56 -0
- data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/ac.rb +16 -0
- data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/kwargs.rb +8 -3
- data/lib/rubygems/vendor/optparse/lib/optparse/uri.rb +7 -0
- data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/version.rb +9 -0
- data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse.rb +158 -62
- data/lib/rubygems/vendor/resolv/COPYING +56 -0
- data/lib/rubygems/{resolv → vendor/resolv}/lib/resolv.rb +117 -49
- data/lib/rubygems/vendor/securerandom/COPYING +56 -0
- data/lib/rubygems/vendor/securerandom/lib/securerandom.rb +102 -0
- data/lib/rubygems/vendor/timeout/.document +1 -0
- data/lib/rubygems/vendor/timeout/COPYING +56 -0
- data/lib/rubygems/{timeout → vendor/timeout}/lib/timeout.rb +10 -11
- data/lib/rubygems/vendor/tsort/.document +1 -0
- data/lib/rubygems/{tsort → vendor/tsort}/lib/tsort.rb +2 -2
- data/lib/rubygems/vendor/uri/.document +1 -0
- data/lib/rubygems/vendor/uri/COPYING +56 -0
- data/lib/rubygems/vendor/uri/lib/uri/common.rb +880 -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 +1579 -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 +546 -0
- data/lib/rubygems/vendor/uri/lib/uri/rfc3986_parser.rb +206 -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 +3 -0
- data/lib/rubygems/vendored_timeout.rb +5 -0
- data/lib/rubygems/vendored_tsort.rb +3 -0
- data/lib/rubygems/version.rb +26 -9
- data/lib/rubygems/yaml_serializer.rb +12 -7
- data/lib/rubygems.rb +82 -47
- data/rubygems-update.gemspec +11 -6
- data/setup.rb +1 -1
- metadata +131 -86
- data/bundler/lib/bundler/compact_index_client/gem_parser.rb +0 -32
- data/lib/rubygems/net/http.rb +0 -3
- data/lib/rubygems/net-http/LICENSE.txt +0 -22
- data/lib/rubygems/net-http/lib/net/http/backward.rb +0 -40
- data/lib/rubygems/net-protocol/LICENSE.txt +0 -22
- data/lib/rubygems/optparse/lib/optparse/uri.rb +0 -7
- data/lib/rubygems/optparse.rb +0 -3
- data/lib/rubygems/resolv/LICENSE.txt +0 -22
- 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 -3
- data/lib/rubygems/shellwords.rb +0 -3
- data/lib/rubygems/timeout/LICENSE.txt +0 -22
- data/lib/rubygems/timeout.rb +0 -3
- data/lib/rubygems/tsort/LICENSE.txt +0 -22
- data/lib/rubygems/tsort.rb +0 -3
- /data/{lib/rubygems/optparse → bundler/lib/bundler/vendor/fileutils}/COPYING +0 -0
- /data/{lib/rubygems/net-http → bundler/lib/bundler/vendor/securerandom}/.document +0 -0
- /data/{MAINTAINERS.txt → doc/MAINTAINERS.txt} +0 -0
- /data/{bundler → doc/bundler}/UPGRADING.md +0 -0
- /data/{UPGRADING.md → doc/rubygems/UPGRADING.md} +0 -0
- /data/lib/rubygems/{net-protocol → vendor/molinillo}/.document +0 -0
- /data/lib/rubygems/{resolver → vendor}/molinillo/LICENSE +0 -0
- /data/lib/rubygems/{optparse → vendor/net-http}/.document +0 -0
- /data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/exceptions.rb +0 -0
- /data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/proxy_delta.rb +0 -0
- /data/lib/rubygems/{resolv → vendor/net-protocol}/.document +0 -0
- /data/{bundler/lib/bundler/vendor/fileutils → lib/rubygems/vendor/net-protocol}/LICENSE.txt +0 -0
- /data/lib/rubygems/{net-protocol → vendor/net-protocol}/lib/net/protocol.rb +0 -0
- /data/lib/rubygems/{resolver/molinillo → vendor/optparse}/.document +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optionparser.rb +0 -0
- /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/date.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/{timeout → vendor/resolv}/.document +0 -0
- /data/lib/rubygems/{tsort → vendor/securerandom}/.document +0 -0
- /data/{bundler/lib/bundler/vendor/uri → lib/rubygems/vendor/tsort}/LICENSE.txt +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-BINSTUBS" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-BINSTUBS" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
|
-
\fBbundle binstubs\fR \fIGEM_NAME\fR [\-\-force] [\-\-path PATH] [\-\-standalone]
|
|
7
|
+
\fBbundle binstubs\fR \fIGEM_NAME\fR [\-\-force] [\-\-path PATH] [\-\-standalone] [\-\-all\-platforms]
|
|
8
8
|
.SH "DESCRIPTION"
|
|
9
9
|
Binstubs are scripts that wrap around executables\. Bundler creates a small Ruby file (a binstub) that loads Bundler, runs the command, and puts it into \fBbin/\fR\. Binstubs are a shortcut\-or alternative\- to always using \fBbundle exec\fR\. This gives you a file that can be run directly, and one that will always run the correct gem version used by the application\.
|
|
10
10
|
.P
|
|
@@ -16,15 +16,18 @@ This command generates binstubs for executables in \fBGEM_NAME\fR\. Binstubs are
|
|
|
16
16
|
\fB\-\-force\fR
|
|
17
17
|
Overwrite existing binstubs if they exist\.
|
|
18
18
|
.TP
|
|
19
|
-
\fB\-\-path\fR
|
|
19
|
+
\fB\-\-path[=PATH]\fR
|
|
20
20
|
The location to install the specified binstubs to\. This defaults to \fBbin\fR\.
|
|
21
21
|
.TP
|
|
22
22
|
\fB\-\-standalone\fR
|
|
23
23
|
Makes binstubs that can work without depending on Rubygems or Bundler at runtime\.
|
|
24
24
|
.TP
|
|
25
|
-
\fB\-\-shebang\fR
|
|
25
|
+
\fB\-\-shebang=SHEBANG\fR
|
|
26
26
|
Specify a different shebang executable name than the default (default 'ruby')
|
|
27
27
|
.TP
|
|
28
28
|
\fB\-\-all\fR
|
|
29
29
|
Create binstubs for all gems in the bundle\.
|
|
30
|
+
.TP
|
|
31
|
+
\fB\-\-all\-platforms\fR
|
|
32
|
+
Install binstubs for all platforms\.
|
|
30
33
|
|
|
@@ -3,7 +3,7 @@ bundle-binstubs(1) -- Install the binstubs of the listed gems
|
|
|
3
3
|
|
|
4
4
|
## SYNOPSIS
|
|
5
5
|
|
|
6
|
-
`bundle binstubs` <GEM_NAME> [--force] [--path PATH] [--standalone]
|
|
6
|
+
`bundle binstubs` <GEM_NAME> [--force] [--path PATH] [--standalone] [--all-platforms]
|
|
7
7
|
|
|
8
8
|
## DESCRIPTION
|
|
9
9
|
|
|
@@ -27,15 +27,18 @@ Calling binstubs with [GEM [GEM]] will create binstubs for all given gems.
|
|
|
27
27
|
* `--force`:
|
|
28
28
|
Overwrite existing binstubs if they exist.
|
|
29
29
|
|
|
30
|
-
* `--path`:
|
|
30
|
+
* `--path[=PATH]`:
|
|
31
31
|
The location to install the specified binstubs to. This defaults to `bin`.
|
|
32
32
|
|
|
33
33
|
* `--standalone`:
|
|
34
34
|
Makes binstubs that can work without depending on Rubygems or Bundler at
|
|
35
35
|
runtime.
|
|
36
36
|
|
|
37
|
-
* `--shebang`:
|
|
37
|
+
* `--shebang=SHEBANG`:
|
|
38
38
|
Specify a different shebang executable name than the default (default 'ruby')
|
|
39
39
|
|
|
40
40
|
* `--all`:
|
|
41
41
|
Create binstubs for all gems in the bundle.
|
|
42
|
+
|
|
43
|
+
* `--all-platforms`:
|
|
44
|
+
Install binstubs for all platforms.
|
|
@@ -1,14 +1,42 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-CACHE" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-CACHE" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-cache\fR \- Package your needed \fB\.gem\fR files into your application
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
|
-
\fBbundle cache\fR
|
|
7
|
+
\fBbundle cache\fR [\fIOPTIONS\fR]
|
|
8
8
|
.P
|
|
9
9
|
alias: \fBpackage\fR, \fBpack\fR
|
|
10
10
|
.SH "DESCRIPTION"
|
|
11
11
|
Copy all of the \fB\.gem\fR files needed to run the application into the \fBvendor/cache\fR directory\. In the future, when running \fBbundle install(1)\fR \fIbundle\-install\.1\.html\fR, use the gems in the cache in preference to the ones on \fBrubygems\.org\fR\.
|
|
12
|
+
.SH "OPTIONS"
|
|
13
|
+
.TP
|
|
14
|
+
\fB\-\-all\fR
|
|
15
|
+
Include all sources (including path and git)\.
|
|
16
|
+
.TP
|
|
17
|
+
\fB\-\-all\-platforms\fR
|
|
18
|
+
Include gems for all platforms present in the lockfile, not only the current one\.
|
|
19
|
+
.TP
|
|
20
|
+
\fB\-\-cache\-path=CACHE\-PATH\fR
|
|
21
|
+
Specify a different cache path than the default (vendor/cache)\.
|
|
22
|
+
.TP
|
|
23
|
+
\fB\-\-gemfile=GEMFILE\fR
|
|
24
|
+
Use the specified gemfile instead of Gemfile\.
|
|
25
|
+
.TP
|
|
26
|
+
\fB\-\-no\-install\fR
|
|
27
|
+
Don't install the gems, only update the cache\.
|
|
28
|
+
.TP
|
|
29
|
+
\fB\-\-no\-prune\fR
|
|
30
|
+
Don't remove stale gems from the cache\.
|
|
31
|
+
.TP
|
|
32
|
+
\fB\-\-path=PATH\fR
|
|
33
|
+
Specify a different path than the system default ($BUNDLE_PATH or $GEM_HOME)\.
|
|
34
|
+
.TP
|
|
35
|
+
\fB\-\-quiet\fR
|
|
36
|
+
Only output warnings and errors\.
|
|
37
|
+
.TP
|
|
38
|
+
\fB\-\-frozen\fR
|
|
39
|
+
Do not allow the Gemfile\.lock to be updated after this bundle cache operation's install\.
|
|
12
40
|
.SH "GIT AND PATH GEMS"
|
|
13
41
|
The \fBbundle cache\fR command can also package \fB:git\fR and \fB:path\fR dependencies besides \.gem files\. This needs to be explicitly enabled via the \fB\-\-all\fR option\. Once used, the \fB\-\-all\fR option will be remembered\.
|
|
14
42
|
.SH "SUPPORT FOR MULTIPLE PLATFORMS"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
bundle-cache(1) -- Package your needed `.gem` files into your application
|
|
2
|
-
|
|
2
|
+
=========================================================================
|
|
3
3
|
|
|
4
4
|
## SYNOPSIS
|
|
5
5
|
|
|
6
|
-
`bundle cache`
|
|
6
|
+
`bundle cache` [*OPTIONS*]
|
|
7
7
|
|
|
8
8
|
alias: `package`, `pack`
|
|
9
9
|
|
|
@@ -13,6 +13,35 @@ Copy all of the `.gem` files needed to run the application into the
|
|
|
13
13
|
`vendor/cache` directory. In the future, when running [`bundle install(1)`](bundle-install.1.html),
|
|
14
14
|
use the gems in the cache in preference to the ones on `rubygems.org`.
|
|
15
15
|
|
|
16
|
+
## OPTIONS
|
|
17
|
+
|
|
18
|
+
* `--all`:
|
|
19
|
+
Include all sources (including path and git).
|
|
20
|
+
|
|
21
|
+
* `--all-platforms`:
|
|
22
|
+
Include gems for all platforms present in the lockfile, not only the current one.
|
|
23
|
+
|
|
24
|
+
* `--cache-path=CACHE-PATH`:
|
|
25
|
+
Specify a different cache path than the default (vendor/cache).
|
|
26
|
+
|
|
27
|
+
* `--gemfile=GEMFILE`:
|
|
28
|
+
Use the specified gemfile instead of Gemfile.
|
|
29
|
+
|
|
30
|
+
* `--no-install`:
|
|
31
|
+
Don't install the gems, only update the cache.
|
|
32
|
+
|
|
33
|
+
* `--no-prune`:
|
|
34
|
+
Don't remove stale gems from the cache.
|
|
35
|
+
|
|
36
|
+
* `--path=PATH`:
|
|
37
|
+
Specify a different path than the system default ($BUNDLE_PATH or $GEM_HOME).
|
|
38
|
+
|
|
39
|
+
* `--quiet`:
|
|
40
|
+
Only output warnings and errors.
|
|
41
|
+
|
|
42
|
+
* `--frozen`:
|
|
43
|
+
Do not allow the Gemfile.lock to be updated after this bundle cache operation's install.
|
|
44
|
+
|
|
16
45
|
## GIT AND PATH GEMS
|
|
17
46
|
|
|
18
47
|
The `bundle cache` command can also package `:git` and `:path` dependencies
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-CHECK" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-CHECK" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -9,14 +9,16 @@
|
|
|
9
9
|
\fBcheck\fR searches the local machine for each of the gems requested in the Gemfile\. If all gems are found, Bundler prints a success message and exits with a status of 0\.
|
|
10
10
|
.P
|
|
11
11
|
If not, the first missing gem is listed and Bundler exits status 1\.
|
|
12
|
+
.P
|
|
13
|
+
If the lockfile needs to be updated then it will be resolved using the gems installed on the local machine, if they satisfy the requirements\.
|
|
12
14
|
.SH "OPTIONS"
|
|
13
15
|
.TP
|
|
14
16
|
\fB\-\-dry\-run\fR
|
|
15
17
|
Locks the [\fBGemfile(5)\fR][Gemfile(5)] before running the command\.
|
|
16
18
|
.TP
|
|
17
|
-
\fB\-\-gemfile\fR
|
|
19
|
+
\fB\-\-gemfile=GEMFILE\fR
|
|
18
20
|
Use the specified gemfile instead of the [\fBGemfile(5)\fR][Gemfile(5)]\.
|
|
19
21
|
.TP
|
|
20
|
-
\fB\-\-path\fR
|
|
22
|
+
\fB\-\-path=PATH\fR
|
|
21
23
|
Specify a different path than the system default (\fB$BUNDLE_PATH\fR or \fB$GEM_HOME\fR)\. Bundler will remember this value for future installs on this machine\.
|
|
22
24
|
|
|
@@ -15,12 +15,17 @@ a status of 0.
|
|
|
15
15
|
|
|
16
16
|
If not, the first missing gem is listed and Bundler exits status 1.
|
|
17
17
|
|
|
18
|
+
If the lockfile needs to be updated then it will be resolved using the gems
|
|
19
|
+
installed on the local machine, if they satisfy the requirements.
|
|
20
|
+
|
|
18
21
|
## OPTIONS
|
|
19
22
|
|
|
20
23
|
* `--dry-run`:
|
|
21
24
|
Locks the [`Gemfile(5)`][Gemfile(5)] before running the command.
|
|
22
|
-
|
|
25
|
+
|
|
26
|
+
* `--gemfile=GEMFILE`:
|
|
23
27
|
Use the specified gemfile instead of the [`Gemfile(5)`][Gemfile(5)].
|
|
24
|
-
|
|
28
|
+
|
|
29
|
+
* `--path=PATH`:
|
|
25
30
|
Specify a different path than the system default (`$BUNDLE_PATH` or `$GEM_HOME`).
|
|
26
31
|
Bundler will remember this value for future installs on this machine.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-CLEAN" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-CLEAN" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-clean\fR \- Cleans up unused gems in your bundler directory
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-CONFIG" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-CONFIG" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-config\fR \- Set bundler configuration options
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -56,16 +56,16 @@ Creates a directory (defaults to \fB~/bin\fR) and place any executables from the
|
|
|
56
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\.
|
|
57
57
|
.TP
|
|
58
58
|
\fBonly\fR
|
|
59
|
-
A space\-separated list of groups to install only gems of the specified groups\.
|
|
59
|
+
A space\-separated list of groups to install only gems of the specified groups\. Please check carefully if you want to install also gems without a group, cause they get put inside \fBdefault\fR group\. For example \fBonly test:default\fR will install all gems specified in test group and without one\.
|
|
60
60
|
.TP
|
|
61
61
|
\fBpath\fR
|
|
62
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\.
|
|
63
63
|
.TP
|
|
64
64
|
\fBwithout\fR
|
|
65
|
-
A space\-separated list of groups referencing gems to skip during installation\.
|
|
65
|
+
A space\-separated or \fB:\fR\-separated list of groups referencing gems to skip during installation\.
|
|
66
66
|
.TP
|
|
67
67
|
\fBwith\fR
|
|
68
|
-
A space\-separated list of \fBoptional\fR groups referencing gems to include during installation\.
|
|
68
|
+
A space\-separated or \fB:\fR\-separated list of \fBoptional\fR groups referencing gems to include during installation\.
|
|
69
69
|
.SH "BUILD OPTIONS"
|
|
70
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\.
|
|
71
71
|
.P
|
|
@@ -95,8 +95,6 @@ Any periods in the configuration keys must be replaced with two underscores when
|
|
|
95
95
|
.SH "LIST OF AVAILABLE KEYS"
|
|
96
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\.
|
|
97
97
|
.IP "\(bu" 4
|
|
98
|
-
\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
|
|
99
|
-
.IP "\(bu" 4
|
|
100
98
|
\fBallow_offline_install\fR (\fBBUNDLE_ALLOW_OFFLINE_INSTALL\fR): Allow Bundler to use cached data when installing without network access\.
|
|
101
99
|
.IP "\(bu" 4
|
|
102
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\.
|
|
@@ -151,6 +149,8 @@ The following is a list of all configuration keys and their purpose\. You can le
|
|
|
151
149
|
.IP "\(bu" 4
|
|
152
150
|
\fBjobs\fR (\fBBUNDLE_JOBS\fR): The number of gems Bundler can install in parallel\. Defaults to the number of available processors\.
|
|
153
151
|
.IP "\(bu" 4
|
|
152
|
+
\fBlockfile_checksums\fR (\fBBUNDLE_LOCKFILE_CHECKSUMS\fR): Whether Bundler should include a checksums section in new lockfiles, to protect from compromised gem sources\.
|
|
153
|
+
.IP "\(bu" 4
|
|
154
154
|
\fBno_install\fR (\fBBUNDLE_NO_INSTALL\fR): Whether \fBbundle package\fR should skip installing gems\.
|
|
155
155
|
.IP "\(bu" 4
|
|
156
156
|
\fBno_prune\fR (\fBBUNDLE_NO_PRUNE\fR): Whether Bundler should leave outdated gems unpruned when caching\.
|
|
@@ -197,14 +197,10 @@ The following is a list of all configuration keys and their purpose\. You can le
|
|
|
197
197
|
.IP "\(bu" 4
|
|
198
198
|
\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\.
|
|
199
199
|
.IP "\(bu" 4
|
|
200
|
-
\fBwith\fR (\fBBUNDLE_WITH\fR): A \fB:\fR\-separated list of groups whose gems bundler should install\.
|
|
200
|
+
\fBwith\fR (\fBBUNDLE_WITH\fR): A space\-separated or \fB:\fR\-separated list of groups whose gems bundler should install\.
|
|
201
201
|
.IP "\(bu" 4
|
|
202
|
-
\fBwithout\fR (\fBBUNDLE_WITHOUT\fR): A \fB:\fR\-separated list of groups whose gems bundler should not install\.
|
|
202
|
+
\fBwithout\fR (\fBBUNDLE_WITHOUT\fR): A space\-separated or \fB:\fR\-separated list of groups whose gems bundler should not install\.
|
|
203
203
|
.IP "" 0
|
|
204
|
-
.P
|
|
205
|
-
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\.
|
|
206
|
-
.P
|
|
207
|
-
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\.
|
|
208
204
|
.SH "LOCAL GIT REPOS"
|
|
209
205
|
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:
|
|
210
206
|
.IP "" 4
|
|
@@ -309,7 +305,7 @@ Any \fB\.\fR characters in a host name are mapped to a double underscore (\fB__\
|
|
|
309
305
|
.P
|
|
310
306
|
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\.
|
|
311
307
|
.SH "CONFIGURE BUNDLER DIRECTORIES"
|
|
312
|
-
Bundler's home,
|
|
308
|
+
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
|
|
313
309
|
.IP "" 4
|
|
314
310
|
.nf
|
|
315
311
|
BUNDLE_USER_HOME : $HOME/\.bundle
|
|
@@ -79,6 +79,9 @@ The options that can be configured are:
|
|
|
79
79
|
|
|
80
80
|
* `only`:
|
|
81
81
|
A space-separated list of groups to install only gems of the specified groups.
|
|
82
|
+
Please check carefully if you want to install also gems without a group, cause
|
|
83
|
+
they get put inside `default` group. For example `only test:default` will install
|
|
84
|
+
all gems specified in test group and without one.
|
|
82
85
|
|
|
83
86
|
* `path`:
|
|
84
87
|
The location to install the specified gems to. This defaults to Rubygems'
|
|
@@ -88,10 +91,12 @@ The options that can be configured are:
|
|
|
88
91
|
installed to other locations will not get listed.
|
|
89
92
|
|
|
90
93
|
* `without`:
|
|
91
|
-
A space-separated list of groups referencing gems to skip during
|
|
94
|
+
A space-separated or `:`-separated list of groups referencing gems to skip during
|
|
95
|
+
installation.
|
|
92
96
|
|
|
93
97
|
* `with`:
|
|
94
|
-
|
|
98
|
+
A space-separated or `:`-separated list of **optional** groups referencing gems to
|
|
99
|
+
include during installation.
|
|
95
100
|
|
|
96
101
|
## BUILD OPTIONS
|
|
97
102
|
|
|
@@ -137,9 +142,6 @@ the environment variable `BUNDLE_LOCAL__RACK`.
|
|
|
137
142
|
The following is a list of all configuration keys and their purpose. You can
|
|
138
143
|
learn more about their operation in [bundle install(1)](bundle-install.1.html).
|
|
139
144
|
|
|
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
145
|
* `allow_offline_install` (`BUNDLE_ALLOW_OFFLINE_INSTALL`):
|
|
144
146
|
Allow Bundler to use cached data when installing without network access.
|
|
145
147
|
* `auto_clean_without_path` (`BUNDLE_AUTO_CLEAN_WITHOUT_PATH`):
|
|
@@ -220,6 +222,8 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
|
|
|
220
222
|
* `jobs` (`BUNDLE_JOBS`):
|
|
221
223
|
The number of gems Bundler can install in parallel. Defaults to the number of
|
|
222
224
|
available processors.
|
|
225
|
+
* `lockfile_checksums` (`BUNDLE_LOCKFILE_CHECKSUMS`):
|
|
226
|
+
Whether Bundler should include a checksums section in new lockfiles, to protect from compromised gem sources.
|
|
223
227
|
* `no_install` (`BUNDLE_NO_INSTALL`):
|
|
224
228
|
Whether `bundle package` should skip installing gems.
|
|
225
229
|
* `no_prune` (`BUNDLE_NO_PRUNE`):
|
|
@@ -281,16 +285,9 @@ learn more about their operation in [bundle install(1)](bundle-install.1.html).
|
|
|
281
285
|
`system` will use the system version of Bundler, and `x.y.z` will use
|
|
282
286
|
the specified version of Bundler.
|
|
283
287
|
* `with` (`BUNDLE_WITH`):
|
|
284
|
-
A `:`-separated list of groups whose gems bundler should install.
|
|
288
|
+
A space-separated or `:`-separated list of groups whose gems bundler should install.
|
|
285
289
|
* `without` (`BUNDLE_WITHOUT`):
|
|
286
|
-
A `:`-separated list of groups whose gems bundler should not install.
|
|
287
|
-
|
|
288
|
-
In general, you should set these settings per-application by using the applicable
|
|
289
|
-
flag to the [bundle install(1)](bundle-install.1.html) or [bundle cache(1)](bundle-cache.1.html) command.
|
|
290
|
-
|
|
291
|
-
You can set them globally either via environment variables or `bundle config`,
|
|
292
|
-
whichever is preferable for your setup. If you use both, environment variables
|
|
293
|
-
will take preference over global settings.
|
|
290
|
+
A space-separated or `:`-separated list of groups whose gems bundler should not install.
|
|
294
291
|
|
|
295
292
|
## LOCAL GIT REPOS
|
|
296
293
|
|
|
@@ -400,7 +397,7 @@ through ENV.
|
|
|
400
397
|
|
|
401
398
|
## CONFIGURE BUNDLER DIRECTORIES
|
|
402
399
|
|
|
403
|
-
Bundler's home,
|
|
400
|
+
Bundler's home, cache and plugin directories and config file can be configured
|
|
404
401
|
through environment variables. The default location for Bundler's home directory is
|
|
405
402
|
`~/.bundle`, which all directories inherit from by default. The following
|
|
406
403
|
outlines the available environment variables and their default values
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-CONSOLE" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-CONSOLE" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
|
-
\fBbundle\-console\fR \-
|
|
5
|
+
\fBbundle\-console\fR \- Open an IRB session with the bundle pre\-loaded
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
7
|
\fBbundle console\fR [GROUP]
|
|
8
8
|
.SH "DESCRIPTION"
|
|
@@ -29,7 +29,5 @@ $ bundle console
|
|
|
29
29
|
Resolving dependencies\|\.\|\.\|\.
|
|
30
30
|
[1] pry(main)>
|
|
31
31
|
.fi
|
|
32
|
-
.SH "NOTES"
|
|
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\.
|
|
34
32
|
.SH "SEE ALSO"
|
|
35
33
|
Gemfile(5) \fIhttps://bundler\.io/man/gemfile\.5\.html\fR
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
bundle-console(1) --
|
|
2
|
-
|
|
1
|
+
bundle-console(1) -- Open an IRB session with the bundle pre-loaded
|
|
2
|
+
===================================================================
|
|
3
3
|
|
|
4
4
|
## SYNOPSIS
|
|
5
5
|
|
|
@@ -34,11 +34,6 @@ the shell from the following:
|
|
|
34
34
|
Resolving dependencies...
|
|
35
35
|
[1] pry(main)>
|
|
36
36
|
|
|
37
|
-
## NOTES
|
|
38
|
-
|
|
39
|
-
This command was deprecated in Bundler 2.1 and will be removed in 3.0.
|
|
40
|
-
Use `bin/console` script, which can be generated by `bundle gem <NAME>`.
|
|
41
|
-
|
|
42
37
|
## SEE ALSO
|
|
43
38
|
|
|
44
39
|
[Gemfile(5)](https://bundler.io/man/gemfile.5.html)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-DOCTOR" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-DOCTOR" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-doctor\fR \- Checks the bundle for common problems
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -25,6 +25,6 @@ Missing dependencies
|
|
|
25
25
|
\fB\-\-quiet\fR
|
|
26
26
|
Only output warnings and errors\.
|
|
27
27
|
.TP
|
|
28
|
-
\fB\-\-gemfile
|
|
28
|
+
\fB\-\-gemfile=GEMFILE\fR
|
|
29
29
|
The location of the Gemfile(5) which Bundler should use\. This defaults to a Gemfile(5) in the current working directory\. In general, Bundler will assume that the location of the Gemfile(5) is also the project's root and will try to find \fBGemfile\.lock\fR and \fBvendor/cache\fR relative to this location\.
|
|
30
30
|
|
|
@@ -25,7 +25,7 @@ Examples of common problems caught by bundle-doctor include:
|
|
|
25
25
|
* `--quiet`:
|
|
26
26
|
Only output warnings and errors.
|
|
27
27
|
|
|
28
|
-
* `--gemfile
|
|
28
|
+
* `--gemfile=GEMFILE`:
|
|
29
29
|
The location of the Gemfile(5) which Bundler should use. This defaults
|
|
30
30
|
to a Gemfile(5) in the current working directory. In general, Bundler
|
|
31
31
|
will assume that the location of the Gemfile(5) is also the project's
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-ENV" "1" "March 2025" ""
|
|
4
|
+
.SH "NAME"
|
|
5
|
+
\fBbundle\-env\fR \- Print information about the environment Bundler is running under
|
|
6
|
+
.SH "SYNOPSIS"
|
|
7
|
+
\fBbundle env\fR
|
|
8
|
+
.SH "DESCRIPTION"
|
|
9
|
+
Prints information about the environment Bundler is running under\.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
bundle-env(1) -- Print information about the environment Bundler is running under
|
|
2
|
+
=================================================================================
|
|
3
|
+
|
|
4
|
+
## SYNOPSIS
|
|
5
|
+
|
|
6
|
+
`bundle env`
|
|
7
|
+
|
|
8
|
+
## DESCRIPTION
|
|
9
|
+
|
|
10
|
+
Prints information about the environment Bundler is running under.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-EXEC" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-EXEC" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-exec\fR \- Execute a command in the context of the bundle
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
|
-
\fBbundle exec\fR [\-\-keep\-file\-descriptors] \fIcommand\fR
|
|
7
|
+
\fBbundle exec\fR [\-\-keep\-file\-descriptors] [\-\-gemfile=GEMFILE] \fIcommand\fR
|
|
8
8
|
.SH "DESCRIPTION"
|
|
9
9
|
This command executes the command, making all gems specified in the [\fBGemfile(5)\fR][Gemfile(5)] available to \fBrequire\fR in Ruby programs\.
|
|
10
10
|
.P
|
|
@@ -15,6 +15,9 @@ Note that \fBbundle exec\fR does not require that an executable is available on
|
|
|
15
15
|
.TP
|
|
16
16
|
\fB\-\-keep\-file\-descriptors\fR
|
|
17
17
|
Passes all file descriptors to the new processes\. Default is true from bundler version 2\.2\.26\. Setting it to false is now deprecated\.
|
|
18
|
+
.TP
|
|
19
|
+
\fB\-\-gemfile=GEMFILE\fR
|
|
20
|
+
Use the specified gemfile instead of [\fBGemfile(5)\fR][Gemfile(5)]\.
|
|
18
21
|
.SH "BUNDLE INSTALL \-\-BINSTUBS"
|
|
19
22
|
If you use the \fB\-\-binstubs\fR flag in bundle install(1) \fIbundle\-install\.1\.html\fR, Bundler will automatically create a directory (which defaults to \fBapp_root/bin\fR) containing all of the executables available from gems in the bundle\.
|
|
20
23
|
.P
|
|
@@ -71,8 +74,8 @@ end
|
|
|
71
74
|
Bundler provides convenience helpers that wrap \fBsystem\fR and \fBexec\fR, and they can be used like this:
|
|
72
75
|
.IP "" 4
|
|
73
76
|
.nf
|
|
74
|
-
Bundler\.
|
|
75
|
-
Bundler\.
|
|
77
|
+
Bundler\.unbundled_system('brew install wget')
|
|
78
|
+
Bundler\.unbundled_exec('brew install wget')
|
|
76
79
|
.fi
|
|
77
80
|
.IP "" 0
|
|
78
81
|
.SH "RUBYGEMS PLUGINS"
|
|
@@ -3,7 +3,7 @@ bundle-exec(1) -- Execute a command in the context of the bundle
|
|
|
3
3
|
|
|
4
4
|
## SYNOPSIS
|
|
5
5
|
|
|
6
|
-
`bundle exec` [--keep-file-descriptors] <command>
|
|
6
|
+
`bundle exec` [--keep-file-descriptors] [--gemfile=GEMFILE] <command>
|
|
7
7
|
|
|
8
8
|
## DESCRIPTION
|
|
9
9
|
|
|
@@ -24,6 +24,9 @@ available on your shell's `$PATH`.
|
|
|
24
24
|
Passes all file descriptors to the new processes. Default is true from
|
|
25
25
|
bundler version 2.2.26. Setting it to false is now deprecated.
|
|
26
26
|
|
|
27
|
+
* `--gemfile=GEMFILE`:
|
|
28
|
+
Use the specified gemfile instead of [`Gemfile(5)`][Gemfile(5)].
|
|
29
|
+
|
|
27
30
|
## BUNDLE INSTALL --BINSTUBS
|
|
28
31
|
|
|
29
32
|
If you use the `--binstubs` flag in [bundle install(1)](bundle-install.1.html), Bundler will
|
|
@@ -105,8 +108,8 @@ need to use `with_unbundled_env`.
|
|
|
105
108
|
Bundler provides convenience helpers that wrap `system` and `exec`, and they
|
|
106
109
|
can be used like this:
|
|
107
110
|
|
|
108
|
-
Bundler.
|
|
109
|
-
Bundler.
|
|
111
|
+
Bundler.unbundled_system('brew install wget')
|
|
112
|
+
Bundler.unbundled_exec('brew install wget')
|
|
110
113
|
|
|
111
114
|
|
|
112
115
|
## RUBYGEMS PLUGINS
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-FUND" "1" "March 2025" ""
|
|
4
|
+
.SH "NAME"
|
|
5
|
+
\fBbundle\-fund\fR \- Lists information about gems seeking funding assistance
|
|
6
|
+
.SH "SYNOPSIS"
|
|
7
|
+
\fBbundle fund\fR [\fIOPTIONS\fR]
|
|
8
|
+
.SH "DESCRIPTION"
|
|
9
|
+
\fBbundle fund\fR lists information about gems seeking funding assistance\.
|
|
10
|
+
.SH "OPTIONS"
|
|
11
|
+
.TP
|
|
12
|
+
\fB\-\-group=<list>\fR, \fB\-g=<list>\fR
|
|
13
|
+
Fetch funding information for a specific group\.
|
|
14
|
+
.SH "EXAMPLES"
|
|
15
|
+
.nf
|
|
16
|
+
# Lists funding information for all gems
|
|
17
|
+
bundle fund
|
|
18
|
+
|
|
19
|
+
# Lists funding information for a specific group
|
|
20
|
+
bundle fund \-\-group=security
|
|
21
|
+
.fi
|
|
22
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
bundle-fund(1) -- Lists information about gems seeking funding assistance
|
|
2
|
+
=========================================================================
|
|
3
|
+
|
|
4
|
+
## SYNOPSIS
|
|
5
|
+
|
|
6
|
+
`bundle fund` [*OPTIONS*]
|
|
7
|
+
|
|
8
|
+
## DESCRIPTION
|
|
9
|
+
|
|
10
|
+
**bundle fund** lists information about gems seeking funding assistance.
|
|
11
|
+
|
|
12
|
+
## OPTIONS
|
|
13
|
+
|
|
14
|
+
* `--group=<list>`, `-g=<list>`:
|
|
15
|
+
Fetch funding information for a specific group.
|
|
16
|
+
|
|
17
|
+
## EXAMPLES
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
# Lists funding information for all gems
|
|
21
|
+
bundle fund
|
|
22
|
+
|
|
23
|
+
# Lists funding information for a specific group
|
|
24
|
+
bundle fund --group=security
|
|
25
|
+
```
|