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,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-LIST" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-LIST" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-list\fR \- List all the gems in the bundle
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
bundle-list(1) -- List all the gems in the bundle
|
|
2
|
-
|
|
2
|
+
=================================================
|
|
3
3
|
|
|
4
4
|
## SYNOPSIS
|
|
5
5
|
|
|
@@ -25,9 +25,12 @@ bundle list --only-group dev test --paths
|
|
|
25
25
|
|
|
26
26
|
* `--name-only`:
|
|
27
27
|
Print only the name of each gem.
|
|
28
|
+
|
|
28
29
|
* `--paths`:
|
|
29
30
|
Print the path to each gem in the bundle.
|
|
31
|
+
|
|
30
32
|
* `--without-group=<list>`:
|
|
31
33
|
A space-separated list of groups of gems to skip during printing.
|
|
34
|
+
|
|
32
35
|
* `--only-group=<list>`:
|
|
33
36
|
A space-separated list of groups of gems to print.
|
|
@@ -1,35 +1,47 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-LOCK" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-LOCK" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
|
-
\fBbundle lock\fR [\-\-update] [\-\-local] [\-\-print] [\-\-lockfile=PATH] [\-\-full\-index] [\-\-add\-platform] [\-\-remove\-platform] [\-\-patch] [\-\-minor] [\-\-major] [\-\-strict] [\-\-conservative]
|
|
7
|
+
\fBbundle lock\fR [\-\-update] [\-\-bundler[=BUNDLER]] [\-\-local] [\-\-print] [\-\-lockfile=PATH] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-add\-checksums] [\-\-add\-platform] [\-\-remove\-platform] [\-\-normalize\-platforms] [\-\-patch] [\-\-minor] [\-\-major] [\-\-pre] [\-\-strict] [\-\-conservative]
|
|
8
8
|
.SH "DESCRIPTION"
|
|
9
9
|
Lock the gems specified in Gemfile\.
|
|
10
10
|
.SH "OPTIONS"
|
|
11
11
|
.TP
|
|
12
|
-
\fB\-\-update
|
|
12
|
+
\fB\-\-update[=<list>]\fR
|
|
13
13
|
Ignores the existing lockfile\. Resolve then updates lockfile\. Taking a list of gems or updating all gems if no list is given\.
|
|
14
14
|
.TP
|
|
15
|
+
\fB\-\-bundler[=BUNDLER]\fR
|
|
16
|
+
Update the locked version of bundler to the given version or the latest version if no version is given\.
|
|
17
|
+
.TP
|
|
15
18
|
\fB\-\-local\fR
|
|
16
19
|
Do not attempt to connect to \fBrubygems\.org\fR\. Instead, Bundler will use the gems already present in Rubygems' cache or in \fBvendor/cache\fR\. Note that if a appropriate platform\-specific gem exists on \fBrubygems\.org\fR it will not be found\.
|
|
17
20
|
.TP
|
|
18
21
|
\fB\-\-print\fR
|
|
19
22
|
Prints the lockfile to STDOUT instead of writing to the file system\.
|
|
20
23
|
.TP
|
|
21
|
-
\fB\-\-lockfile
|
|
24
|
+
\fB\-\-lockfile=LOCKFILE\fR
|
|
22
25
|
The path where the lockfile should be written to\.
|
|
23
26
|
.TP
|
|
24
27
|
\fB\-\-full\-index\fR
|
|
25
28
|
Fall back to using the single\-file index of all gems\.
|
|
26
29
|
.TP
|
|
27
|
-
\fB\-\-
|
|
30
|
+
\fB\-\-gemfile=GEMFILE\fR
|
|
31
|
+
Use the specified gemfile instead of [\fBGemfile(5)\fR][Gemfile(5)]\.
|
|
32
|
+
.TP
|
|
33
|
+
\fB\-\-add\-checksums\fR
|
|
34
|
+
Add checksums to the lockfile\.
|
|
35
|
+
.TP
|
|
36
|
+
\fB\-\-add\-platform=<list>\fR
|
|
28
37
|
Add a new platform to the lockfile, re\-resolving for the addition of that platform\.
|
|
29
38
|
.TP
|
|
30
|
-
\fB\-\-remove\-platform
|
|
39
|
+
\fB\-\-remove\-platform=<list>\fR
|
|
31
40
|
Remove a platform from the lockfile\.
|
|
32
41
|
.TP
|
|
42
|
+
\fB\-\-normalize\-platforms\fR
|
|
43
|
+
Normalize lockfile platforms\.
|
|
44
|
+
.TP
|
|
33
45
|
\fB\-\-patch\fR
|
|
34
46
|
If updating, prefer updating only to next patch version\.
|
|
35
47
|
.TP
|
|
@@ -39,6 +51,9 @@ If updating, prefer updating only to next minor version\.
|
|
|
39
51
|
\fB\-\-major\fR
|
|
40
52
|
If updating, prefer updating to next major version (default)\.
|
|
41
53
|
.TP
|
|
54
|
+
\fB\-\-pre\fR
|
|
55
|
+
If updating, always choose the highest allowed version, regardless of prerelease status\.
|
|
56
|
+
.TP
|
|
42
57
|
\fB\-\-strict\fR
|
|
43
58
|
If updating, do not allow any gem to be updated past latest \-\-patch | \-\-minor | \-\-major\.
|
|
44
59
|
.TP
|
|
@@ -4,15 +4,20 @@ bundle-lock(1) -- Creates / Updates a lockfile without installing
|
|
|
4
4
|
## SYNOPSIS
|
|
5
5
|
|
|
6
6
|
`bundle lock` [--update]
|
|
7
|
+
[--bundler[=BUNDLER]]
|
|
7
8
|
[--local]
|
|
8
9
|
[--print]
|
|
9
10
|
[--lockfile=PATH]
|
|
10
11
|
[--full-index]
|
|
12
|
+
[--gemfile=GEMFILE]
|
|
13
|
+
[--add-checksums]
|
|
11
14
|
[--add-platform]
|
|
12
15
|
[--remove-platform]
|
|
16
|
+
[--normalize-platforms]
|
|
13
17
|
[--patch]
|
|
14
18
|
[--minor]
|
|
15
19
|
[--major]
|
|
20
|
+
[--pre]
|
|
16
21
|
[--strict]
|
|
17
22
|
[--conservative]
|
|
18
23
|
|
|
@@ -22,10 +27,14 @@ Lock the gems specified in Gemfile.
|
|
|
22
27
|
|
|
23
28
|
## OPTIONS
|
|
24
29
|
|
|
25
|
-
* `--update
|
|
30
|
+
* `--update[=<list>]`:
|
|
26
31
|
Ignores the existing lockfile. Resolve then updates lockfile. Taking a list
|
|
27
32
|
of gems or updating all gems if no list is given.
|
|
28
33
|
|
|
34
|
+
* `--bundler[=BUNDLER]`:
|
|
35
|
+
Update the locked version of bundler to the given version or the latest
|
|
36
|
+
version if no version is given.
|
|
37
|
+
|
|
29
38
|
* `--local`:
|
|
30
39
|
Do not attempt to connect to `rubygems.org`. Instead, Bundler will use the
|
|
31
40
|
gems already present in Rubygems' cache or in `vendor/cache`. Note that if a
|
|
@@ -35,19 +44,28 @@ Lock the gems specified in Gemfile.
|
|
|
35
44
|
* `--print`:
|
|
36
45
|
Prints the lockfile to STDOUT instead of writing to the file system.
|
|
37
46
|
|
|
38
|
-
* `--lockfile
|
|
47
|
+
* `--lockfile=LOCKFILE`:
|
|
39
48
|
The path where the lockfile should be written to.
|
|
40
49
|
|
|
41
50
|
* `--full-index`:
|
|
42
51
|
Fall back to using the single-file index of all gems.
|
|
43
52
|
|
|
44
|
-
* `--
|
|
53
|
+
* `--gemfile=GEMFILE`:
|
|
54
|
+
Use the specified gemfile instead of [`Gemfile(5)`][Gemfile(5)].
|
|
55
|
+
|
|
56
|
+
* `--add-checksums`:
|
|
57
|
+
Add checksums to the lockfile.
|
|
58
|
+
|
|
59
|
+
* `--add-platform=<list>`:
|
|
45
60
|
Add a new platform to the lockfile, re-resolving for the addition of that
|
|
46
61
|
platform.
|
|
47
62
|
|
|
48
|
-
* `--remove-platform
|
|
63
|
+
* `--remove-platform=<list>`:
|
|
49
64
|
Remove a platform from the lockfile.
|
|
50
65
|
|
|
66
|
+
* `--normalize-platforms`:
|
|
67
|
+
Normalize lockfile platforms.
|
|
68
|
+
|
|
51
69
|
* `--patch`:
|
|
52
70
|
If updating, prefer updating only to next patch version.
|
|
53
71
|
|
|
@@ -57,6 +75,9 @@ Lock the gems specified in Gemfile.
|
|
|
57
75
|
* `--major`:
|
|
58
76
|
If updating, prefer updating to next major version (default).
|
|
59
77
|
|
|
78
|
+
* `--pre`:
|
|
79
|
+
If updating, always choose the highest allowed version, regardless of prerelease status.
|
|
80
|
+
|
|
60
81
|
* `--strict`:
|
|
61
82
|
If updating, do not allow any gem to be updated past latest --patch | --minor | --major.
|
|
62
83
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-OPEN" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-OPEN" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -27,6 +27,6 @@ bundle open 'rack' \-\-path 'README\.md'
|
|
|
27
27
|
Will open the README\.md file of the 'rack' gem source in your bundle\.
|
|
28
28
|
.SH "OPTIONS"
|
|
29
29
|
.TP
|
|
30
|
-
\fB\-\-path\fR
|
|
30
|
+
\fB\-\-path[=PATH]\fR
|
|
31
31
|
Specify GEM source relative path to open\.
|
|
32
32
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-OUTDATED" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-OUTDATED" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-outdated\fR \- List installed gems with newer versions available
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
|
-
\fBbundle outdated\fR [GEM] [\-\-local] [\-\-pre] [\-\-source] [\-\-strict] [\-\-parseable | \-\-porcelain] [\-\-group=GROUP] [\-\-groups] [\-\-patch|\-\-minor|\-\-major] [\-\-filter\-major] [\-\-filter\-minor] [\-\-filter\-patch] [\-\-only\-explicit]
|
|
7
|
+
\fBbundle outdated\fR [GEM] [\-\-local] [\-\-pre] [\-\-source] [\-\-filter\-strict | \-\-strict] [\-\-update\-strict] [\-\-parseable | \-\-porcelain] [\-\-group=GROUP] [\-\-groups] [\-\-patch|\-\-minor|\-\-major] [\-\-filter\-major] [\-\-filter\-minor] [\-\-filter\-patch] [\-\-only\-explicit]
|
|
8
8
|
.SH "DESCRIPTION"
|
|
9
9
|
Outdated lists the names and versions of gems that have a newer version available in the given source\. Calling outdated with [GEM [GEM]] will only check for newer versions of the given gems\. Prerelease gems are ignored by default\. If your gems are up to date, Bundler will exit with a status of 0\. Otherwise, it will exit 1\.
|
|
10
10
|
.SH "OPTIONS"
|
|
@@ -15,16 +15,19 @@ Do not attempt to fetch gems remotely and use the gem cache instead\.
|
|
|
15
15
|
\fB\-\-pre\fR
|
|
16
16
|
Check for newer pre\-release gems\.
|
|
17
17
|
.TP
|
|
18
|
-
\fB\-\-source
|
|
18
|
+
\fB\-\-source=<list>\fR
|
|
19
19
|
Check against a specific source\.
|
|
20
20
|
.TP
|
|
21
|
-
\fB\-\-strict\fR
|
|
21
|
+
\fB\-\-filter\-strict\fR, \fB\-\-strict\fR
|
|
22
22
|
Only list newer versions allowed by your Gemfile requirements, also respecting conservative update flags (\-\-patch, \-\-minor, \-\-major)\.
|
|
23
23
|
.TP
|
|
24
|
+
\fB\-\-update\-strict\fR
|
|
25
|
+
Strict conservative resolution, do not allow any gem to be updated past latest \-\-patch | \-\-minor | \-\-major\.
|
|
26
|
+
.TP
|
|
24
27
|
\fB\-\-parseable\fR, \fB\-\-porcelain\fR
|
|
25
28
|
Use minimal formatting for more parseable output\.
|
|
26
29
|
.TP
|
|
27
|
-
\fB\-\-group\fR
|
|
30
|
+
\fB\-\-group=GROUP\fR
|
|
28
31
|
List gems from a specific group\.
|
|
29
32
|
.TP
|
|
30
33
|
\fB\-\-groups\fR
|
|
@@ -6,7 +6,8 @@ bundle-outdated(1) -- List installed gems with newer versions available
|
|
|
6
6
|
`bundle outdated` [GEM] [--local]
|
|
7
7
|
[--pre]
|
|
8
8
|
[--source]
|
|
9
|
-
[--strict]
|
|
9
|
+
[--filter-strict | --strict]
|
|
10
|
+
[--update-strict]
|
|
10
11
|
[--parseable | --porcelain]
|
|
11
12
|
[--group=GROUP]
|
|
12
13
|
[--groups]
|
|
@@ -31,16 +32,19 @@ are up to date, Bundler will exit with a status of 0. Otherwise, it will exit 1.
|
|
|
31
32
|
* `--pre`:
|
|
32
33
|
Check for newer pre-release gems.
|
|
33
34
|
|
|
34
|
-
* `--source
|
|
35
|
+
* `--source=<list>`:
|
|
35
36
|
Check against a specific source.
|
|
36
37
|
|
|
37
|
-
* `--strict`:
|
|
38
|
+
* `--filter-strict`, `--strict`:
|
|
38
39
|
Only list newer versions allowed by your Gemfile requirements, also respecting conservative update flags (--patch, --minor, --major).
|
|
39
40
|
|
|
41
|
+
* `--update-strict`:
|
|
42
|
+
Strict conservative resolution, do not allow any gem to be updated past latest --patch | --minor | --major.
|
|
43
|
+
|
|
40
44
|
* `--parseable`, `--porcelain`:
|
|
41
45
|
Use minimal formatting for more parseable output.
|
|
42
46
|
|
|
43
|
-
* `--group`:
|
|
47
|
+
* `--group=GROUP`:
|
|
44
48
|
List gems from a specific group.
|
|
45
49
|
|
|
46
50
|
* `--groups`:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-PLATFORM" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-PLATFORM" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-platform\fR \- Displays platform compatibility information
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-PLUGIN" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-PLUGIN" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-plugin\fR \- Manage Bundler plugins
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
|
-
\fBbundle plugin\fR install PLUGINS [\-\-source=\fISOURCE\fR] [\-\-version=\fIversion\fR] [\-\-git
|
|
7
|
+
\fBbundle plugin\fR install PLUGINS [\-\-source=\fISOURCE\fR] [\-\-version=\fIversion\fR] [\-\-git=\fIgit\-url\fR] [\-\-branch=\fIbranch\fR|\-\-ref=\fIrev\fR] [\-\-path=\fIpath\fR]
|
|
8
8
|
.br
|
|
9
9
|
\fBbundle plugin\fR uninstall PLUGINS
|
|
10
10
|
.br
|
|
@@ -27,7 +27,7 @@ Install bundler\-graph gem from example\.com\. The global source, specified in s
|
|
|
27
27
|
You can specify the version of the gem via \fB\-\-version\fR\.
|
|
28
28
|
.TP
|
|
29
29
|
\fBbundle plugin install bundler\-graph \-\-git https://github\.com/rubygems/bundler\-graph\fR
|
|
30
|
-
Install bundler\-graph gem from Git repository\.
|
|
30
|
+
Install bundler\-graph gem from Git repository\. You can use standard Git URLs like:
|
|
31
31
|
.IP
|
|
32
32
|
\fBssh://[user@]host\.xz[:port]/path/to/repo\.git\fR
|
|
33
33
|
.br
|
|
@@ -37,7 +37,10 @@ Install bundler\-graph gem from Git repository\. \fB\-\-git\fR can be replaced w
|
|
|
37
37
|
.br
|
|
38
38
|
\fBfile:///path/to/repo\fR
|
|
39
39
|
.IP
|
|
40
|
-
When you specify \fB\-\-git\fR
|
|
40
|
+
When you specify \fB\-\-git\fR, you can use \fB\-\-branch\fR or \fB\-\-ref\fR to specify any branch, tag, or commit hash (revision) to use\.
|
|
41
|
+
.TP
|
|
42
|
+
\fBbundle plugin install bundler\-graph \-\-path \.\./bundler\-graph\fR
|
|
43
|
+
Install bundler\-graph gem from a local path\.
|
|
41
44
|
.SS "uninstall"
|
|
42
45
|
Uninstall the plugin(s) specified in PLUGINS\.
|
|
43
46
|
.SS "list"
|
|
@@ -4,7 +4,8 @@ bundle-plugin(1) -- Manage Bundler plugins
|
|
|
4
4
|
## SYNOPSIS
|
|
5
5
|
|
|
6
6
|
`bundle plugin` install PLUGINS [--source=<SOURCE>] [--version=<version>]
|
|
7
|
-
[--git
|
|
7
|
+
[--git=<git-url>] [--branch=<branch>|--ref=<rev>]
|
|
8
|
+
[--path=<path>]<br>
|
|
8
9
|
`bundle plugin` uninstall PLUGINS<br>
|
|
9
10
|
`bundle plugin` list<br>
|
|
10
11
|
`bundle plugin` help [COMMAND]
|
|
@@ -29,14 +30,17 @@ Install the given plugin(s).
|
|
|
29
30
|
You can specify the version of the gem via `--version`.
|
|
30
31
|
|
|
31
32
|
* `bundle plugin install bundler-graph --git https://github.com/rubygems/bundler-graph`:
|
|
32
|
-
Install bundler-graph gem from Git repository.
|
|
33
|
+
Install bundler-graph gem from Git repository. You can use standard Git URLs like:
|
|
33
34
|
|
|
34
35
|
`ssh://[user@]host.xz[:port]/path/to/repo.git`<br>
|
|
35
36
|
`http[s]://host.xz[:port]/path/to/repo.git`<br>
|
|
36
37
|
`/path/to/repo`<br>
|
|
37
38
|
`file:///path/to/repo`
|
|
38
39
|
|
|
39
|
-
When you specify `--git
|
|
40
|
+
When you specify `--git`, you can use `--branch` or `--ref` to specify any branch, tag, or commit hash (revision) to use.
|
|
41
|
+
|
|
42
|
+
* `bundle plugin install bundler-graph --path ../bundler-graph`:
|
|
43
|
+
Install bundler-graph gem from a local path.
|
|
40
44
|
|
|
41
45
|
### uninstall
|
|
42
46
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-PRISTINE" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-PRISTINE" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-REMOVE" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-REMOVE" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-remove\fR \- Removes gems from the Gemfile
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-SHOW" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-SHOW" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
|
-
\fBbundle show\fR [GEM] [\-\-paths]
|
|
7
|
+
\fBbundle show\fR [GEM] [\-\-paths] [\-\-outdated]
|
|
8
8
|
.SH "DESCRIPTION"
|
|
9
9
|
Without the [GEM] option, \fBshow\fR will print a list of the names and versions of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)], sorted by name\.
|
|
10
10
|
.P
|
|
@@ -13,4 +13,7 @@ Calling show with [GEM] will list the exact location of that gem on your machine
|
|
|
13
13
|
.TP
|
|
14
14
|
\fB\-\-paths\fR
|
|
15
15
|
List the paths of all gems that are required by your [\fBGemfile(5)\fR][Gemfile(5)], sorted by gem name\.
|
|
16
|
+
.TP
|
|
17
|
+
\fB\-\-outdated\fR
|
|
18
|
+
Show verbose output including whether gems are outdated\.
|
|
16
19
|
|
|
@@ -5,6 +5,7 @@ bundle-show(1) -- Shows all the gems in your bundle, or the path to a gem
|
|
|
5
5
|
|
|
6
6
|
`bundle show` [GEM]
|
|
7
7
|
[--paths]
|
|
8
|
+
[--outdated]
|
|
8
9
|
|
|
9
10
|
## DESCRIPTION
|
|
10
11
|
|
|
@@ -19,3 +20,6 @@ machine.
|
|
|
19
20
|
* `--paths`:
|
|
20
21
|
List the paths of all gems that are required by your [`Gemfile(5)`][Gemfile(5)],
|
|
21
22
|
sorted by gem name.
|
|
23
|
+
|
|
24
|
+
* `--outdated`:
|
|
25
|
+
Show verbose output including whether gems are outdated.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-UPDATE" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-UPDATE" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-update\fR \- Update your gems to the latest available versions
|
|
6
6
|
.SH "SYNOPSIS"
|
|
7
|
-
\fBbundle update\fR \fI*gems\fR [\-\-all] [\-\-group=NAME] [\-\-source=NAME] [\-\-local] [\-\-ruby] [\-\-bundler[=VERSION]] [\-\-full\-index] [\-\-jobs=
|
|
7
|
+
\fBbundle update\fR \fI*gems\fR [\-\-all] [\-\-group=NAME] [\-\-source=NAME] [\-\-local] [\-\-ruby] [\-\-bundler[=VERSION]] [\-\-full\-index] [\-\-gemfile=GEMFILE] [\-\-jobs=NUMBER] [\-\-quiet] [\-\-patch|\-\-minor|\-\-major] [\-\-pre] [\-\-redownload] [\-\-strict] [\-\-conservative]
|
|
8
8
|
.SH "DESCRIPTION"
|
|
9
9
|
Update the gems specified (all gems, if \fB\-\-all\fR flag is used), ignoring the previously installed gems specified in the \fBGemfile\.lock\fR\. In general, you should use bundle install(1) \fIbundle\-install\.1\.html\fR to install the same exact gems and versions across machines\.
|
|
10
10
|
.P
|
|
@@ -14,10 +14,10 @@ You would use \fBbundle update\fR to explicitly update the version of a gem\.
|
|
|
14
14
|
\fB\-\-all\fR
|
|
15
15
|
Update all gems specified in Gemfile\.
|
|
16
16
|
.TP
|
|
17
|
-
\fB\-\-group=<
|
|
17
|
+
\fB\-\-group=<list>\fR, \fB\-g=<list>\fR
|
|
18
18
|
Only update the gems in the specified group\. For instance, you can update all gems in the development group with \fBbundle update \-\-group development\fR\. You can also call \fBbundle update rails \-\-group test\fR to update the rails gem and all gems in the test group, for example\.
|
|
19
19
|
.TP
|
|
20
|
-
\fB\-\-source=<
|
|
20
|
+
\fB\-\-source=<list>\fR
|
|
21
21
|
The name of a \fB:git\fR or \fB:path\fR source used in the Gemfile(5)\. For instance, with a \fB:git\fR source of \fBhttp://github\.com/rails/rails\.git\fR, you would call \fBbundle update \-\-source rails\fR
|
|
22
22
|
.TP
|
|
23
23
|
\fB\-\-local\fR
|
|
@@ -26,13 +26,16 @@ Do not attempt to fetch gems remotely and use the gem cache instead\.
|
|
|
26
26
|
\fB\-\-ruby\fR
|
|
27
27
|
Update the locked version of Ruby to the current version of Ruby\.
|
|
28
28
|
.TP
|
|
29
|
-
\fB\-\-bundler\fR
|
|
29
|
+
\fB\-\-bundler[=BUNDLER]\fR
|
|
30
30
|
Update the locked version of bundler to the invoked bundler version\.
|
|
31
31
|
.TP
|
|
32
32
|
\fB\-\-full\-index\fR
|
|
33
33
|
Fall back to using the single\-file index of all gems\.
|
|
34
34
|
.TP
|
|
35
|
-
\fB\-\-
|
|
35
|
+
\fB\-\-gemfile=GEMFILE\fR
|
|
36
|
+
Use the specified gemfile instead of [\fBGemfile(5)\fR][Gemfile(5)]\.
|
|
37
|
+
.TP
|
|
38
|
+
\fB\-\-jobs=<number>\fR, \fB\-j=<number>\fR
|
|
36
39
|
Specify the number of jobs to run in parallel\. The default is the number of available processors\.
|
|
37
40
|
.TP
|
|
38
41
|
\fB\-\-retry=[<number>]\fR
|
|
@@ -41,7 +44,7 @@ Retry failed network or git requests for \fInumber\fR times\.
|
|
|
41
44
|
\fB\-\-quiet\fR
|
|
42
45
|
Only output warnings and errors\.
|
|
43
46
|
.TP
|
|
44
|
-
\fB\-\-redownload\fR
|
|
47
|
+
\fB\-\-redownload\fR, \fB\-\-force\fR
|
|
45
48
|
Force downloading every gem\.
|
|
46
49
|
.TP
|
|
47
50
|
\fB\-\-patch\fR
|
|
@@ -53,6 +56,9 @@ Prefer updating only to next minor version\.
|
|
|
53
56
|
\fB\-\-major\fR
|
|
54
57
|
Prefer updating to next major version (default)\.
|
|
55
58
|
.TP
|
|
59
|
+
\fB\-\-pre\fR
|
|
60
|
+
Always choose the highest allowed version, regardless of prerelease status\.
|
|
61
|
+
.TP
|
|
56
62
|
\fB\-\-strict\fR
|
|
57
63
|
Do not allow any gem to be updated past latest \fB\-\-patch\fR | \fB\-\-minor\fR | \fB\-\-major\fR\.
|
|
58
64
|
.TP
|
|
@@ -10,9 +10,11 @@ bundle-update(1) -- Update your gems to the latest available versions
|
|
|
10
10
|
[--ruby]
|
|
11
11
|
[--bundler[=VERSION]]
|
|
12
12
|
[--full-index]
|
|
13
|
-
[--
|
|
13
|
+
[--gemfile=GEMFILE]
|
|
14
|
+
[--jobs=NUMBER]
|
|
14
15
|
[--quiet]
|
|
15
16
|
[--patch|--minor|--major]
|
|
17
|
+
[--pre]
|
|
16
18
|
[--redownload]
|
|
17
19
|
[--strict]
|
|
18
20
|
[--conservative]
|
|
@@ -32,13 +34,13 @@ gem.
|
|
|
32
34
|
* `--all`:
|
|
33
35
|
Update all gems specified in Gemfile.
|
|
34
36
|
|
|
35
|
-
* `--group=<
|
|
37
|
+
* `--group=<list>`, `-g=<list>`:
|
|
36
38
|
Only update the gems in the specified group. For instance, you can update all gems
|
|
37
39
|
in the development group with `bundle update --group development`. You can also
|
|
38
40
|
call `bundle update rails --group test` to update the rails gem and all gems in
|
|
39
41
|
the test group, for example.
|
|
40
42
|
|
|
41
|
-
* `--source=<
|
|
43
|
+
* `--source=<list>`:
|
|
42
44
|
The name of a `:git` or `:path` source used in the Gemfile(5). For
|
|
43
45
|
instance, with a `:git` source of `http://github.com/rails/rails.git`,
|
|
44
46
|
you would call `bundle update --source rails`
|
|
@@ -49,13 +51,16 @@ gem.
|
|
|
49
51
|
* `--ruby`:
|
|
50
52
|
Update the locked version of Ruby to the current version of Ruby.
|
|
51
53
|
|
|
52
|
-
* `--bundler`:
|
|
54
|
+
* `--bundler[=BUNDLER]`:
|
|
53
55
|
Update the locked version of bundler to the invoked bundler version.
|
|
54
56
|
|
|
55
57
|
* `--full-index`:
|
|
56
58
|
Fall back to using the single-file index of all gems.
|
|
57
59
|
|
|
58
|
-
* `--
|
|
60
|
+
* `--gemfile=GEMFILE`:
|
|
61
|
+
Use the specified gemfile instead of [`Gemfile(5)`][Gemfile(5)].
|
|
62
|
+
|
|
63
|
+
* `--jobs=<number>`, `-j=<number>`:
|
|
59
64
|
Specify the number of jobs to run in parallel. The default is the number of
|
|
60
65
|
available processors.
|
|
61
66
|
|
|
@@ -65,7 +70,7 @@ gem.
|
|
|
65
70
|
* `--quiet`:
|
|
66
71
|
Only output warnings and errors.
|
|
67
72
|
|
|
68
|
-
* `--redownload`:
|
|
73
|
+
* `--redownload`, `--force`:
|
|
69
74
|
Force downloading every gem.
|
|
70
75
|
|
|
71
76
|
* `--patch`:
|
|
@@ -77,6 +82,9 @@ gem.
|
|
|
77
82
|
* `--major`:
|
|
78
83
|
Prefer updating to next major version (default).
|
|
79
84
|
|
|
85
|
+
* `--pre`:
|
|
86
|
+
Always choose the highest allowed version, regardless of prerelease status.
|
|
87
|
+
|
|
80
88
|
* `--strict`:
|
|
81
89
|
Do not allow any gem to be updated past latest `--patch` | `--minor` | `--major`.
|
|
82
90
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-VERSION" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-VERSION" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-version\fR \- Prints Bundler version information
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE\-VIZ" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE\-VIZ" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
|
|
6
6
|
.SH "SYNOPSIS"
|
|
@@ -13,10 +13,10 @@ The associated gems must also be installed via \fBbundle install(1)\fR \fIbundle
|
|
|
13
13
|
\fBviz\fR command was deprecated in Bundler 2\.2\. Use bundler\-graph plugin \fIhttps://github\.com/rubygems/bundler\-graph\fR instead\.
|
|
14
14
|
.SH "OPTIONS"
|
|
15
15
|
.TP
|
|
16
|
-
\fB\-\-file\fR, \fB\-f\fR
|
|
16
|
+
\fB\-\-file=FILE\fR, \fB\-f=FILE\fR
|
|
17
17
|
The name to use for the generated file\. See \fB\-\-format\fR option
|
|
18
18
|
.TP
|
|
19
|
-
\fB\-\-format\fR, \fB\-F\fR
|
|
19
|
+
\fB\-\-format=FORMAT\fR, \fB\-F=FORMAT\fR
|
|
20
20
|
This is output format option\. Supported format is png, jpg, svg, dot \|\.\|\.\|\.
|
|
21
21
|
.TP
|
|
22
22
|
\fB\-\-requirements\fR, \fB\-R\fR
|
|
@@ -25,6 +25,6 @@ Set to show the version of each required dependency\.
|
|
|
25
25
|
\fB\-\-version\fR, \fB\-v\fR
|
|
26
26
|
Set to show each gem version\.
|
|
27
27
|
.TP
|
|
28
|
-
\fB\-\-without
|
|
28
|
+
\fB\-\-without=<list>\fR, \fB\-W=<list>\fR
|
|
29
29
|
Exclude gems that are part of the specified named group\.
|
|
30
30
|
|
|
@@ -20,13 +20,17 @@ The associated gems must also be installed via [`bundle install(1)`](bundle-inst
|
|
|
20
20
|
|
|
21
21
|
## OPTIONS
|
|
22
22
|
|
|
23
|
-
* `--file`, `-f`:
|
|
23
|
+
* `--file=FILE`, `-f=FILE`:
|
|
24
24
|
The name to use for the generated file. See `--format` option
|
|
25
|
-
|
|
25
|
+
|
|
26
|
+
* `--format=FORMAT`, `-F=FORMAT`:
|
|
26
27
|
This is output format option. Supported format is png, jpg, svg, dot ...
|
|
28
|
+
|
|
27
29
|
* `--requirements`, `-R`:
|
|
28
30
|
Set to show the version of each required dependency.
|
|
31
|
+
|
|
29
32
|
* `--version`, `-v`:
|
|
30
33
|
Set to show each gem version.
|
|
31
|
-
|
|
34
|
+
|
|
35
|
+
* `--without=<list>`, `-W=<list>`:
|
|
32
36
|
Exclude gems that are part of the specified named group.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
.\" generated with
|
|
2
|
-
.\"
|
|
3
|
-
.TH "BUNDLE" "1" "
|
|
1
|
+
.\" generated with Ronn-NG/v0.10.1
|
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
3
|
+
.TH "BUNDLE" "1" "March 2025" ""
|
|
4
4
|
.SH "NAME"
|
|
5
5
|
\fBbundle\fR \- Ruby Dependency Management
|
|
6
6
|
.SH "SYNOPSIS"
|