├── .bundle └── config ├── .changelog.yml ├── .codespellignore ├── .codespellrc ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .git-blame-ignore-revs ├── .gitattributes ├── .githooks ├── pre-commit └── pre-commit-rubocop ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bundler-related-issue.md │ ├── config.yml │ └── rubygems-related-issue.md ├── config.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── bundler.yml │ ├── daily-bundler.yml │ ├── daily-rubygems.yml │ ├── install-rubygems.yml │ ├── lint │ ├── pylock.toml │ └── requirements.in │ ├── read-only.yml │ ├── realworld-bundler.yml │ ├── ruby-core.yml │ ├── rubygems.yml │ ├── scorecards.yml │ ├── sync-ruby.yml │ ├── system-rubygems-bundler.yml │ ├── truffleruby-bundler.yml │ ├── ubuntu-lint.yml │ └── weekly-update.yml ├── .gitignore ├── .rubocop.yml ├── .yamllint.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── MIT.txt ├── Manifest.txt ├── README.md ├── Rakefile ├── SECURITY.md ├── bin ├── mdl ├── rake ├── rake.cmd ├── ronn ├── rubocop └── setup ├── bundler ├── .changelog.yml ├── .document ├── .gitignore ├── .rspec ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bin │ ├── bundle │ ├── parallel_rspec │ └── rspec ├── bundler.gemspec ├── exe │ ├── bundle │ └── bundler ├── lib │ ├── bundler.rb │ └── bundler │ │ ├── .document │ │ ├── build_metadata.rb │ │ ├── capistrano.rb │ │ ├── checksum.rb │ │ ├── ci_detector.rb │ │ ├── cli.rb │ │ ├── cli │ │ ├── add.rb │ │ ├── binstubs.rb │ │ ├── cache.rb │ │ ├── check.rb │ │ ├── clean.rb │ │ ├── common.rb │ │ ├── config.rb │ │ ├── console.rb │ │ ├── doctor.rb │ │ ├── doctor │ │ │ ├── diagnose.rb │ │ │ └── ssl.rb │ │ ├── exec.rb │ │ ├── fund.rb │ │ ├── gem.rb │ │ ├── info.rb │ │ ├── init.rb │ │ ├── install.rb │ │ ├── issue.rb │ │ ├── list.rb │ │ ├── lock.rb │ │ ├── open.rb │ │ ├── outdated.rb │ │ ├── platform.rb │ │ ├── plugin.rb │ │ ├── pristine.rb │ │ ├── remove.rb │ │ ├── show.rb │ │ └── update.rb │ │ ├── compact_index_client.rb │ │ ├── compact_index_client │ │ ├── cache.rb │ │ ├── cache_file.rb │ │ ├── parser.rb │ │ └── updater.rb │ │ ├── constants.rb │ │ ├── current_ruby.rb │ │ ├── definition.rb │ │ ├── dependency.rb │ │ ├── deployment.rb │ │ ├── deprecate.rb │ │ ├── digest.rb │ │ ├── dsl.rb │ │ ├── endpoint_specification.rb │ │ ├── env.rb │ │ ├── environment_preserver.rb │ │ ├── errors.rb │ │ ├── feature_flag.rb │ │ ├── fetcher.rb │ │ ├── fetcher │ │ ├── base.rb │ │ ├── compact_index.rb │ │ ├── dependency.rb │ │ ├── downloader.rb │ │ ├── gem_remote_fetcher.rb │ │ └── index.rb │ │ ├── force_platform.rb │ │ ├── friendly_errors.rb │ │ ├── gem_helper.rb │ │ ├── gem_tasks.rb │ │ ├── gem_version_promoter.rb │ │ ├── index.rb │ │ ├── injector.rb │ │ ├── inline.rb │ │ ├── installer.rb │ │ ├── installer │ │ ├── gem_installer.rb │ │ ├── parallel_installer.rb │ │ └── standalone.rb │ │ ├── lazy_specification.rb │ │ ├── lockfile_generator.rb │ │ ├── lockfile_parser.rb │ │ ├── man │ │ ├── .document │ │ ├── bundle-add.1 │ │ ├── bundle-add.1.ronn │ │ ├── bundle-binstubs.1 │ │ ├── bundle-binstubs.1.ronn │ │ ├── bundle-cache.1 │ │ ├── bundle-cache.1.ronn │ │ ├── bundle-check.1 │ │ ├── bundle-check.1.ronn │ │ ├── bundle-clean.1 │ │ ├── bundle-clean.1.ronn │ │ ├── bundle-config.1 │ │ ├── bundle-config.1.ronn │ │ ├── bundle-console.1 │ │ ├── bundle-console.1.ronn │ │ ├── bundle-doctor.1 │ │ ├── bundle-doctor.1.ronn │ │ ├── bundle-env.1 │ │ ├── bundle-env.1.ronn │ │ ├── bundle-exec.1 │ │ ├── bundle-exec.1.ronn │ │ ├── bundle-fund.1 │ │ ├── bundle-fund.1.ronn │ │ ├── bundle-gem.1 │ │ ├── bundle-gem.1.ronn │ │ ├── bundle-help.1 │ │ ├── bundle-help.1.ronn │ │ ├── bundle-info.1 │ │ ├── bundle-info.1.ronn │ │ ├── bundle-init.1 │ │ ├── bundle-init.1.ronn │ │ ├── bundle-install.1 │ │ ├── bundle-install.1.ronn │ │ ├── bundle-issue.1 │ │ ├── bundle-issue.1.ronn │ │ ├── bundle-licenses.1 │ │ ├── bundle-licenses.1.ronn │ │ ├── bundle-list.1 │ │ ├── bundle-list.1.ronn │ │ ├── bundle-lock.1 │ │ ├── bundle-lock.1.ronn │ │ ├── bundle-open.1 │ │ ├── bundle-open.1.ronn │ │ ├── bundle-outdated.1 │ │ ├── bundle-outdated.1.ronn │ │ ├── bundle-platform.1 │ │ ├── bundle-platform.1.ronn │ │ ├── bundle-plugin.1 │ │ ├── bundle-plugin.1.ronn │ │ ├── bundle-pristine.1 │ │ ├── bundle-pristine.1.ronn │ │ ├── bundle-remove.1 │ │ ├── bundle-remove.1.ronn │ │ ├── bundle-show.1 │ │ ├── bundle-show.1.ronn │ │ ├── bundle-update.1 │ │ ├── bundle-update.1.ronn │ │ ├── bundle-version.1 │ │ ├── bundle-version.1.ronn │ │ ├── bundle.1 │ │ ├── bundle.1.ronn │ │ ├── gemfile.5 │ │ ├── gemfile.5.ronn │ │ └── index.txt │ │ ├── match_metadata.rb │ │ ├── match_platform.rb │ │ ├── match_remote_metadata.rb │ │ ├── materialization.rb │ │ ├── mirror.rb │ │ ├── plugin.rb │ │ ├── plugin │ │ ├── api.rb │ │ ├── api │ │ │ └── source.rb │ │ ├── dsl.rb │ │ ├── events.rb │ │ ├── index.rb │ │ ├── installer.rb │ │ ├── installer │ │ │ ├── git.rb │ │ │ ├── path.rb │ │ │ └── rubygems.rb │ │ └── source_list.rb │ │ ├── process_lock.rb │ │ ├── remote_specification.rb │ │ ├── resolver.rb │ │ ├── resolver │ │ ├── base.rb │ │ ├── candidate.rb │ │ ├── incompatibility.rb │ │ ├── package.rb │ │ ├── root.rb │ │ ├── spec_group.rb │ │ └── strategy.rb │ │ ├── retry.rb │ │ ├── ruby_dsl.rb │ │ ├── ruby_version.rb │ │ ├── rubygems_ext.rb │ │ ├── rubygems_gem_installer.rb │ │ ├── rubygems_integration.rb │ │ ├── runtime.rb │ │ ├── safe_marshal.rb │ │ ├── self_manager.rb │ │ ├── settings.rb │ │ ├── settings │ │ └── validator.rb │ │ ├── setup.rb │ │ ├── shared_helpers.rb │ │ ├── source.rb │ │ ├── source │ │ ├── gemspec.rb │ │ ├── git.rb │ │ ├── git │ │ │ └── git_proxy.rb │ │ ├── metadata.rb │ │ ├── path.rb │ │ ├── path │ │ │ └── installer.rb │ │ ├── rubygems.rb │ │ ├── rubygems │ │ │ └── remote.rb │ │ └── rubygems_aggregate.rb │ │ ├── source_list.rb │ │ ├── source_map.rb │ │ ├── spec_set.rb │ │ ├── stub_specification.rb │ │ ├── templates │ │ ├── .document │ │ ├── Executable │ │ ├── Executable.standalone │ │ ├── Gemfile │ │ └── newgem │ │ │ ├── CHANGELOG.md.tt │ │ │ ├── CODE_OF_CONDUCT.md.tt │ │ │ ├── Cargo.toml.tt │ │ │ ├── Gemfile.tt │ │ │ ├── LICENSE.txt.tt │ │ │ ├── README.md.tt │ │ │ ├── Rakefile.tt │ │ │ ├── bin │ │ │ ├── console.tt │ │ │ └── setup.tt │ │ │ ├── circleci │ │ │ └── config.yml.tt │ │ │ ├── exe │ │ │ └── newgem.tt │ │ │ ├── ext │ │ │ └── newgem │ │ │ │ ├── Cargo.toml.tt │ │ │ │ ├── extconf-c.rb.tt │ │ │ │ ├── extconf-go.rb.tt │ │ │ │ ├── extconf-rust.rb.tt │ │ │ │ ├── go.mod.tt │ │ │ │ ├── newgem-go.c.tt │ │ │ │ ├── newgem.c.tt │ │ │ │ ├── newgem.go.tt │ │ │ │ ├── newgem.h.tt │ │ │ │ └── src │ │ │ │ └── lib.rs.tt │ │ │ ├── github │ │ │ └── workflows │ │ │ │ └── main.yml.tt │ │ │ ├── gitignore.tt │ │ │ ├── gitlab-ci.yml.tt │ │ │ ├── lib │ │ │ ├── newgem.rb.tt │ │ │ └── newgem │ │ │ │ └── version.rb.tt │ │ │ ├── newgem.gemspec.tt │ │ │ ├── rspec.tt │ │ │ ├── rubocop.yml.tt │ │ │ ├── sig │ │ │ └── newgem.rbs.tt │ │ │ ├── spec │ │ │ ├── newgem_spec.rb.tt │ │ │ └── spec_helper.rb.tt │ │ │ ├── standard.yml.tt │ │ │ └── test │ │ │ ├── minitest │ │ │ ├── test_helper.rb.tt │ │ │ └── test_newgem.rb.tt │ │ │ └── test-unit │ │ │ ├── newgem_test.rb.tt │ │ │ └── test_helper.rb.tt │ │ ├── ui.rb │ │ ├── ui │ │ ├── rg_proxy.rb │ │ ├── shell.rb │ │ └── silent.rb │ │ ├── uri_credentials_filter.rb │ │ ├── uri_normalizer.rb │ │ ├── vendor │ │ ├── .document │ │ ├── connection_pool │ │ │ ├── LICENSE │ │ │ └── lib │ │ │ │ ├── connection_pool.rb │ │ │ │ └── connection_pool │ │ │ │ ├── timed_stack.rb │ │ │ │ ├── version.rb │ │ │ │ └── wrapper.rb │ │ ├── fileutils │ │ │ ├── COPYING │ │ │ └── lib │ │ │ │ └── fileutils.rb │ │ ├── net-http-persistent │ │ │ ├── README.rdoc │ │ │ └── lib │ │ │ │ └── net │ │ │ │ └── http │ │ │ │ ├── persistent.rb │ │ │ │ └── persistent │ │ │ │ ├── connection.rb │ │ │ │ ├── pool.rb │ │ │ │ └── timed_stack_multi.rb │ │ ├── pub_grub │ │ │ ├── LICENSE.txt │ │ │ └── lib │ │ │ │ ├── pub_grub.rb │ │ │ │ └── pub_grub │ │ │ │ ├── assignment.rb │ │ │ │ ├── basic_package_source.rb │ │ │ │ ├── failure_writer.rb │ │ │ │ ├── incompatibility.rb │ │ │ │ ├── package.rb │ │ │ │ ├── partial_solution.rb │ │ │ │ ├── rubygems.rb │ │ │ │ ├── solve_failure.rb │ │ │ │ ├── static_package_source.rb │ │ │ │ ├── strategy.rb │ │ │ │ ├── term.rb │ │ │ │ ├── version.rb │ │ │ │ ├── version_constraint.rb │ │ │ │ ├── version_range.rb │ │ │ │ ├── version_solver.rb │ │ │ │ └── version_union.rb │ │ ├── securerandom │ │ │ ├── COPYING │ │ │ └── lib │ │ │ │ └── securerandom.rb │ │ ├── thor │ │ │ ├── LICENSE.md │ │ │ └── lib │ │ │ │ ├── thor.rb │ │ │ │ └── thor │ │ │ │ ├── actions.rb │ │ │ │ ├── actions │ │ │ │ ├── create_file.rb │ │ │ │ ├── create_link.rb │ │ │ │ ├── directory.rb │ │ │ │ ├── empty_directory.rb │ │ │ │ ├── file_manipulation.rb │ │ │ │ └── inject_into_file.rb │ │ │ │ ├── base.rb │ │ │ │ ├── command.rb │ │ │ │ ├── core_ext │ │ │ │ └── hash_with_indifferent_access.rb │ │ │ │ ├── error.rb │ │ │ │ ├── group.rb │ │ │ │ ├── invocation.rb │ │ │ │ ├── line_editor.rb │ │ │ │ ├── line_editor │ │ │ │ ├── basic.rb │ │ │ │ └── readline.rb │ │ │ │ ├── nested_context.rb │ │ │ │ ├── parser.rb │ │ │ │ ├── parser │ │ │ │ ├── argument.rb │ │ │ │ ├── arguments.rb │ │ │ │ ├── option.rb │ │ │ │ └── options.rb │ │ │ │ ├── rake_compat.rb │ │ │ │ ├── runner.rb │ │ │ │ ├── shell.rb │ │ │ │ ├── shell │ │ │ │ ├── basic.rb │ │ │ │ ├── color.rb │ │ │ │ ├── column_printer.rb │ │ │ │ ├── html.rb │ │ │ │ ├── table_printer.rb │ │ │ │ ├── terminal.rb │ │ │ │ └── wrapped_printer.rb │ │ │ │ ├── util.rb │ │ │ │ └── version.rb │ │ ├── tsort │ │ │ ├── LICENSE.txt │ │ │ └── lib │ │ │ │ └── tsort.rb │ │ └── uri │ │ │ ├── COPYING │ │ │ └── lib │ │ │ ├── uri.rb │ │ │ └── uri │ │ │ ├── common.rb │ │ │ ├── file.rb │ │ │ ├── ftp.rb │ │ │ ├── generic.rb │ │ │ ├── http.rb │ │ │ ├── https.rb │ │ │ ├── ldap.rb │ │ │ ├── ldaps.rb │ │ │ ├── mailto.rb │ │ │ ├── rfc2396_parser.rb │ │ │ ├── rfc3986_parser.rb │ │ │ ├── version.rb │ │ │ ├── ws.rb │ │ │ └── wss.rb │ │ ├── vendored_fileutils.rb │ │ ├── vendored_net_http.rb │ │ ├── vendored_persistent.rb │ │ ├── vendored_pub_grub.rb │ │ ├── vendored_securerandom.rb │ │ ├── vendored_thor.rb │ │ ├── vendored_timeout.rb │ │ ├── vendored_tsort.rb │ │ ├── vendored_uri.rb │ │ ├── version.rb │ │ ├── vlad.rb │ │ ├── worker.rb │ │ └── yaml_serializer.rb └── spec │ ├── bundler │ ├── build_metadata_spec.rb │ ├── bundler_spec.rb │ ├── ci_detector_spec.rb │ ├── cli_common_spec.rb │ ├── cli_spec.rb │ ├── compact_index_client │ │ ├── parser_spec.rb │ │ └── updater_spec.rb │ ├── current_ruby_spec.rb │ ├── definition_spec.rb │ ├── dependency_spec.rb │ ├── digest_spec.rb │ ├── dsl_spec.rb │ ├── endpoint_specification_spec.rb │ ├── env_spec.rb │ ├── environment_preserver_spec.rb │ ├── fetcher │ │ ├── base_spec.rb │ │ ├── compact_index_spec.rb │ │ ├── dependency_spec.rb │ │ ├── downloader_spec.rb │ │ ├── gem_remote_fetcher_spec.rb │ │ └── index_spec.rb │ ├── fetcher_spec.rb │ ├── friendly_errors_spec.rb │ ├── gem_helper_spec.rb │ ├── gem_version_promoter_spec.rb │ ├── index_spec.rb │ ├── installer │ │ ├── gem_installer_spec.rb │ │ └── spec_installation_spec.rb │ ├── lockfile_parser_spec.rb │ ├── mirror_spec.rb │ ├── plugin │ │ ├── api │ │ │ └── source_spec.rb │ │ ├── api_spec.rb │ │ ├── dsl_spec.rb │ │ ├── events_spec.rb │ │ ├── index_spec.rb │ │ ├── installer_spec.rb │ │ └── source_list_spec.rb │ ├── plugin_spec.rb │ ├── remote_specification_spec.rb │ ├── resolver │ │ └── candidate_spec.rb │ ├── retry_spec.rb │ ├── ruby_dsl_spec.rb │ ├── ruby_version_spec.rb │ ├── rubygems_integration_spec.rb │ ├── settings │ │ └── validator_spec.rb │ ├── settings_spec.rb │ ├── shared_helpers_spec.rb │ ├── source │ │ ├── git │ │ │ └── git_proxy_spec.rb │ │ ├── git_spec.rb │ │ ├── path_spec.rb │ │ ├── rubygems │ │ │ └── remote_spec.rb │ │ └── rubygems_spec.rb │ ├── source_list_spec.rb │ ├── source_spec.rb │ ├── spec_set_spec.rb │ ├── specifications │ │ └── foo.gemspec │ ├── stub_specification_spec.rb │ ├── ui │ │ └── shell_spec.rb │ ├── ui_spec.rb │ ├── uri_credentials_filter_spec.rb │ ├── worker_spec.rb │ └── yaml_serializer_spec.rb │ ├── cache │ ├── cache_path_spec.rb │ ├── gems_spec.rb │ ├── git_spec.rb │ ├── path_spec.rb │ └── platform_spec.rb │ ├── commands │ ├── add_spec.rb │ ├── binstubs_spec.rb │ ├── cache_spec.rb │ ├── check_spec.rb │ ├── clean_spec.rb │ ├── config_spec.rb │ ├── console_spec.rb │ ├── doctor_spec.rb │ ├── exec_spec.rb │ ├── fund_spec.rb │ ├── help_spec.rb │ ├── info_spec.rb │ ├── init_spec.rb │ ├── install_spec.rb │ ├── issue_spec.rb │ ├── licenses_spec.rb │ ├── list_spec.rb │ ├── lock_spec.rb │ ├── newgem_spec.rb │ ├── open_spec.rb │ ├── outdated_spec.rb │ ├── platform_spec.rb │ ├── post_bundle_message_spec.rb │ ├── pristine_spec.rb │ ├── remove_spec.rb │ ├── show_spec.rb │ ├── ssl_spec.rb │ ├── update_spec.rb │ └── version_spec.rb │ ├── install │ ├── allow_offline_install_spec.rb │ ├── binstubs_spec.rb │ ├── bundler_spec.rb │ ├── deploy_spec.rb │ ├── failure_spec.rb │ ├── force_spec.rb │ ├── gemfile │ │ ├── eval_gemfile_spec.rb │ │ ├── force_ruby_platform_spec.rb │ │ ├── gemspec_spec.rb │ │ ├── git_spec.rb │ │ ├── groups_spec.rb │ │ ├── install_if_spec.rb │ │ ├── lockfile_spec.rb │ │ ├── path_spec.rb │ │ ├── platform_spec.rb │ │ ├── ruby_spec.rb │ │ ├── sources_spec.rb │ │ └── specific_platform_spec.rb │ ├── gemfile_spec.rb │ ├── gems │ │ ├── compact_index_spec.rb │ │ ├── dependency_api_fallback_spec.rb │ │ ├── dependency_api_spec.rb │ │ ├── env_spec.rb │ │ ├── flex_spec.rb │ │ ├── fund_spec.rb │ │ ├── gemfile_source_header_spec.rb │ │ ├── mirror_probe_spec.rb │ │ ├── mirror_spec.rb │ │ ├── native_extensions_spec.rb │ │ ├── post_install_spec.rb │ │ ├── resolving_spec.rb │ │ ├── standalone_spec.rb │ │ └── win32_spec.rb │ ├── gemspecs_spec.rb │ ├── git_spec.rb │ ├── global_cache_spec.rb │ ├── path_spec.rb │ ├── prereleases_spec.rb │ ├── process_lock_spec.rb │ ├── security_policy_spec.rb │ └── yanked_spec.rb │ ├── lock │ ├── git_spec.rb │ └── lockfile_spec.rb │ ├── other │ ├── cli_dispatch_spec.rb │ ├── cli_man_pages_spec.rb │ ├── ext_spec.rb │ └── major_deprecation_spec.rb │ ├── plugins │ ├── command_spec.rb │ ├── hook_spec.rb │ ├── install_spec.rb │ ├── list_spec.rb │ ├── source │ │ └── example_spec.rb │ ├── source_spec.rb │ └── uninstall_spec.rb │ ├── quality_es_spec.rb │ ├── quality_spec.rb │ ├── realworld │ ├── double_check_spec.rb │ ├── edgecases_spec.rb │ ├── ffi_spec.rb │ ├── fixtures │ │ ├── tapioca │ │ │ ├── Gemfile │ │ │ └── Gemfile.lock │ │ └── warbler │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── bin │ │ │ └── warbler-example.rb │ │ │ └── demo │ │ │ └── demo.gemspec │ ├── git_spec.rb │ ├── parallel_spec.rb │ └── slow_perf_spec.rb │ ├── resolver │ ├── basic_spec.rb │ └── platform_spec.rb │ ├── runtime │ ├── env_helpers_spec.rb │ ├── executable_spec.rb │ ├── gem_tasks_spec.rb │ ├── inline_spec.rb │ ├── load_spec.rb │ ├── platform_spec.rb │ ├── require_spec.rb │ ├── requiring_spec.rb │ ├── self_management_spec.rb │ └── setup_spec.rb │ ├── spec_helper.rb │ ├── support │ ├── activate.rb │ ├── artifice │ │ ├── compact_index.rb │ │ ├── compact_index_api_missing.rb │ │ ├── compact_index_basic_authentication.rb │ │ ├── compact_index_checksum_mismatch.rb │ │ ├── compact_index_concurrent_download.rb │ │ ├── compact_index_creds_diff_host.rb │ │ ├── compact_index_etag_match.rb │ │ ├── compact_index_extra.rb │ │ ├── compact_index_extra_api.rb │ │ ├── compact_index_extra_api_missing.rb │ │ ├── compact_index_extra_missing.rb │ │ ├── compact_index_forbidden.rb │ │ ├── compact_index_host_redirect.rb │ │ ├── compact_index_mirror_down.rb │ │ ├── compact_index_no_checksums.rb │ │ ├── compact_index_no_gem.rb │ │ ├── compact_index_partial_update.rb │ │ ├── compact_index_partial_update_bad_digest.rb │ │ ├── compact_index_partial_update_no_digest_not_incremental.rb │ │ ├── compact_index_precompiled_before.rb │ │ ├── compact_index_range_ignored.rb │ │ ├── compact_index_range_not_satisfiable.rb │ │ ├── compact_index_rate_limited.rb │ │ ├── compact_index_redirects.rb │ │ ├── compact_index_strict_basic_authentication.rb │ │ ├── compact_index_wrong_dependencies.rb │ │ ├── compact_index_wrong_gem_checksum.rb │ │ ├── endpoint.rb │ │ ├── endpoint_500.rb │ │ ├── endpoint_api_forbidden.rb │ │ ├── endpoint_basic_authentication.rb │ │ ├── endpoint_creds_diff_host.rb │ │ ├── endpoint_extra.rb │ │ ├── endpoint_extra_api.rb │ │ ├── endpoint_extra_missing.rb │ │ ├── endpoint_fallback.rb │ │ ├── endpoint_host_redirect.rb │ │ ├── endpoint_marshal_fail.rb │ │ ├── endpoint_marshal_fail_basic_authentication.rb │ │ ├── endpoint_mirror_source.rb │ │ ├── endpoint_redirect.rb │ │ ├── endpoint_strict_basic_authentication.rb │ │ ├── endpoint_timeout.rb │ │ ├── fail.rb │ │ ├── helpers │ │ │ ├── artifice.rb │ │ │ ├── compact_index.rb │ │ │ ├── compact_index_extra.rb │ │ │ ├── compact_index_extra_api.rb │ │ │ ├── endpoint.rb │ │ │ ├── endpoint_extra.rb │ │ │ ├── endpoint_fallback.rb │ │ │ ├── endpoint_marshal_fail.rb │ │ │ └── rack_request.rb │ │ ├── vcr.rb │ │ ├── vcr_cassettes │ │ │ └── realworld │ │ │ │ ├── index.rubygems.org │ │ │ │ ├── info │ │ │ │ │ ├── CFPropertyList │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ParseTree │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── RubyInline │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── SexpProcessor │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ZenTest │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── abstract │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── actioncable │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── actionmailbox │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── actionmailer │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── actionpack │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── actiontext │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── actionview │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── actionwebservice │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── activejob │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── activemodel-globalid │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── activemodel-serializers-xml │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── activemodel │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── activerecord-deprecated_finders │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── activerecord │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── activeresource │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── activestorage │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── activesupport │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── adamantium │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── addressable │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── arel │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ast │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── astrolabe │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── atomic │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── autoparse │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── axiom-types │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── backports │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── base64 │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── bcrypt-ruby │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── bcrypt │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── bcrypt_pbkdf │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── benchmark │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── bigdecimal │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── bson │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── builder │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── bundler │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── c21e │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── capybara │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── celerity │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── celluloid-essentials │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── celluloid-extras │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── celluloid-fsm │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── celluloid-io │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── celluloid-pool │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── celluloid-supervision │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── celluloid │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cgi │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cgi_multipart_eof_fix │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── childprocess │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── choice │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── coderay │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── coercible │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── coffee-rails │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── coffee-script-source │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── coffee-script │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── colorize │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── concurrent-ruby │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── configuration │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── connection_pool │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cookiejar │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── coveralls │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── crass │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-ci-environment │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-core │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-create-meta │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-cucumber-expressions │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-expressions │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-formatter-dots │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-gherkin │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-html-formatter │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-messages │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-tag-expressions │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-tag_expressions │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber-wire │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── cucumber │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── culerity │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── curses │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── daemons │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── database_cleaner-active_record │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── database_cleaner-core │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── database_cleaner │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── date │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── declarative-option │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── declarative │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── descendants_tracker │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── diff-lcs │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── digest │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── docile │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── domain_name │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── dotenv-deployment │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── dotenv │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── drb │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── durran-validatable │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── em-hiredis │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── em-http-request │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── em-socksify │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── english │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── equalizer │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── equatable │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── erb │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── erubi │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── erubis │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── escape_utils │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── et-orbi │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── event-bus │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── eventmachine │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── excon │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── execjs │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── extlib │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── facets │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── facter │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faker │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday-em_http │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday-em_synchrony │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday-excon │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday-httpclient │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday-multipart │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday-net_http │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday-net_http_persistent │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday-patron │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday-rack │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday-retry │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faraday_middleware │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── fastthread │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── faye-websocket │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ffi-compiler │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ffi-win32-extensions │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ffi │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── flexmock │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── fugit │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── functional-ruby │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── gem_plugin │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── gemcutter │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── gems │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── gherkin │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── gherkin3 │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── globalid │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── google-api-client │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── google-apis-core │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── google-apis-discovery_v1 │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── google-apis-generator │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── google-cloud-env │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── google-logging-utils │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── google-protobuf │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── googleauth │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── gxapi_rails │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── hashie │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── hike │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── hiredis │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── hitimes │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── hocon │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── hoe │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── hpricot │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── http-accept │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── http-cookie │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── http_parser.rb │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── httpadapter │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── httpauth │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── httpclient │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── hurley │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── i18n │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ice_nine │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── io-console │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── io-wait │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── irb │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── jar-dependencies │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── jaro_winkler │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── journey │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── jruby-pageant │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── json │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── json_pure │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── jwt │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── language_server-protocol │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── launchy │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── leshill-will_paginate │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── libv8 │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── libwebsocket │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── libxml-ruby │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── lint_roller │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── liquid │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── listen │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── little-plugger │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── lockfile │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── logger │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── logging │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── loofah │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mail │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── marcel │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── matrix │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── maven-tools │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── memcache-client │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── memoist │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── memoizable │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── metasploit-erd │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── method_source │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── middleware │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mime-types-data │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mime-types │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mimemagic │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mini_mime │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mini_portile │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mini_portile2 │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── minitest │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mislav-will_paginate │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mize │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mkmf-lite │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mkrf │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mongo │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mongo_ext │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mongodb-mongo │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mongoid │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mongrel │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mono_logger │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── moped │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── multi_json │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── multi_test │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── multi_xml │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── multimap │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── multipart-post │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mustermann │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── mutex_m │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── needle │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── nenv │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── net-ftp │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── net-http-persistent │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── net-http │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── net-imap │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── net-pop │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── net-protocol │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── net-scp │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── net-smtp │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── net-ssh │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── netrc │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── nio4r │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── nkf │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── nokogiri │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── oauth2 │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── optionable │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── origin │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── os │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── parallel │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── parser │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── pastel │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── patron │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── pattern-match │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── pkg-config │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── polyglot │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── power_assert │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── powerpack │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── pp │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── prettyprint │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── prism │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── protobuf-cucumber │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── protocol │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── pry │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── psych │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ptools │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── public_suffix │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── raabro │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── racc │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rack-cache │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rack-mount │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rack-protection │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rack-session │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rack-ssl │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rack-test │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rack │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rackup │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rails-deprecated_sanitizer │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rails-dom-testing │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rails-erd │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rails-html-sanitizer │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rails-observers │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rails │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── railties │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rainbow │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rake-compiler │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rake │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rash │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rash_alt │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rb-fchange │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rb-fsevent │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rb-inotify │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rb-kqueue │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rbnacl-libsodium │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rbnacl │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rdoc │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── redis-client │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── redis-namespace │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── redis │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ref │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── regexp_parser │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── reline │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── representable │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── resque-scheduler │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── resque │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rest-client │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── retriable │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rexml │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── roauth │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rspec-collection_matchers │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rspec-core │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rspec-expectations │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rspec-logsplit │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rspec-mocks │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rspec-rails │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rspec-support │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rspec │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rubocop-ast │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rubocop │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ruby-graphviz │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ruby-maven-libs │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ruby-maven │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ruby-progressbar │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ruby2_keywords │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ruby_dep │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── ruby_parser │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rubyforge │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rubyzip │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── rufus-scheduler │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sass-listen │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sass-rails │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sass │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sassc-rails │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sassc │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── securerandom │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── selenium-webdriver │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sexp_processor │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── signet │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── simplecov-html │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── simplecov │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── simplecov_json_formatter │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sinatra │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── slop │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── snaky_hash │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── spoon │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sprockets-rails │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sprockets │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── spruz │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sqlite3 │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── stringio │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── strings-ansi │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── strings │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── strscan │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sync │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sys-admin │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sys-filesystem │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── sys-uname │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── term-ansicolor │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── test-unit │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── text-format │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── text-hyphen │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── therubyracer │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── thin │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── thor │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── thread_safe │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── tilt │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── time │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── timeout │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── timers │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── tins │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── tlsmail │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── tool │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── trailblazer-option │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── treetop │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── trollop │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── tty-color │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── tty-pager │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── tty-screen │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── tty-tree │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── tty-which │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── tzinfo │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── uber │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── uglifier │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── unf │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── unf_ext │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── unicode-display_width │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── unicode-emoji │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── unicode-version │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── unicode_utils │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── uri │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── useragent │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── uuidtools │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── vegas │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── verse │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── version_gem │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── virtus │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── weakling │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── webrat │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── webrick │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── websocket-driver │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── websocket-extensions │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── websocket │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── will_paginate │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── win32-api │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── win32-dir │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── win32-file-stat │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── win32-file │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── win32-security │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── win32console │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── windows-api │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── windows-pr │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── xpath │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ ├── yard │ │ │ │ │ │ └── GET │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ └── response │ │ │ │ │ └── zeitwerk │ │ │ │ │ │ └── GET │ │ │ │ │ │ ├── request │ │ │ │ │ │ └── response │ │ │ │ └── versions │ │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ └── rubygems.org │ │ │ │ └── gems │ │ │ │ ├── activesupport-3.2.12.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── activesupport-3.2.22.5.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── base64-0.3.0.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── concurrent-ruby-1.3.5.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── connection_pool-2.5.3.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── diff-lcs-1.6.2.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── faker-1.1.2.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── ffi-1.17.2.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── i18n-0.6.11.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── i18n-0.9.5.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── io-console-0.8.0.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── logger-1.7.0.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── mono_logger-1.1.2.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── multi_json-1.16.0.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── mustermann-3.0.3.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── rack-2.0.9.4.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── rack-3.1.16.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── rack-protection-4.1.1.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── rack-session-2.1.1.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── redis-5.4.0.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── redis-client-0.25.0.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── redis-namespace-1.6.0.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── resque-1.24.1.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── resque-scheduler-2.2.0.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── ruby2_keywords-0.0.5.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── rufus-scheduler-2.0.24.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── sinatra-4.1.1.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── tilt-2.6.1.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ ├── tzinfo-2.0.6.gem │ │ │ │ └── GET │ │ │ │ │ ├── request │ │ │ │ │ └── response │ │ │ │ └── vegas-0.1.11.gem │ │ │ │ └── GET │ │ │ │ ├── request │ │ │ │ └── response │ │ └── windows.rb │ ├── build_metadata.rb │ ├── builders.rb │ ├── bundle │ ├── bundle.rb │ ├── checksums.rb │ ├── command_execution.rb │ ├── env.rb │ ├── filters.rb │ ├── hax.rb │ ├── helpers.rb │ ├── indexes.rb │ ├── matchers.rb │ ├── options.rb │ ├── path.rb │ ├── permissions.rb │ ├── platforms.rb │ ├── rubygems_ext.rb │ ├── rubygems_version_manager.rb │ ├── setup.rb │ ├── subprocess.rb │ ├── switch_rubygems.rb │ ├── the_bundle.rb │ └── vendored_net_http.rb │ └── update │ ├── force_spec.rb │ ├── gemfile_spec.rb │ ├── gems │ ├── fund_spec.rb │ └── post_install_spec.rb │ ├── git_spec.rb │ └── path_spec.rb ├── doc ├── MAINTAINERS.txt ├── RELEASE.md ├── UPGRADING.md ├── bundler │ ├── POLICIES.md │ ├── README.md │ ├── TROUBLESHOOTING.md │ ├── contributing │ │ ├── BUG_TRIAGE.md │ │ ├── COMMUNITY.md │ │ ├── HOW_YOU_CAN_HELP.md │ │ └── README.md │ ├── development │ │ ├── DEBUGGING.md │ │ ├── NEW_FEATURES.md │ │ ├── PULL_REQUESTS.md │ │ ├── README.md │ │ ├── SETUP.md │ │ └── windows-terminal.png │ ├── documentation │ │ ├── README.md │ │ ├── VISION.md │ │ └── WRITING.md │ └── playbooks │ │ ├── MERGING_A_PR.md │ │ └── TEAM_CHANGES.md └── rubygems │ ├── CONTRIBUTING.md │ └── POLICIES.md ├── exe ├── gem └── update_rubygems ├── hide_lib_for_update └── note.txt ├── lib ├── rubygems.rb └── rubygems │ ├── available_set.rb │ ├── basic_specification.rb │ ├── bundler_version_finder.rb │ ├── ci_detector.rb │ ├── command.rb │ ├── command_manager.rb │ ├── commands │ ├── build_command.rb │ ├── cert_command.rb │ ├── check_command.rb │ ├── cleanup_command.rb │ ├── contents_command.rb │ ├── dependency_command.rb │ ├── environment_command.rb │ ├── exec_command.rb │ ├── fetch_command.rb │ ├── generate_index_command.rb │ ├── help_command.rb │ ├── info_command.rb │ ├── install_command.rb │ ├── list_command.rb │ ├── lock_command.rb │ ├── mirror_command.rb │ ├── open_command.rb │ ├── outdated_command.rb │ ├── owner_command.rb │ ├── pristine_command.rb │ ├── push_command.rb │ ├── rdoc_command.rb │ ├── rebuild_command.rb │ ├── search_command.rb │ ├── server_command.rb │ ├── setup_command.rb │ ├── signin_command.rb │ ├── signout_command.rb │ ├── sources_command.rb │ ├── specification_command.rb │ ├── stale_command.rb │ ├── uninstall_command.rb │ ├── unpack_command.rb │ ├── update_command.rb │ ├── which_command.rb │ └── yank_command.rb │ ├── config_file.rb │ ├── core_ext │ ├── kernel_gem.rb │ ├── kernel_require.rb │ ├── kernel_warn.rb │ └── tcpsocket_init.rb │ ├── defaults.rb │ ├── dependency.rb │ ├── dependency_installer.rb │ ├── dependency_list.rb │ ├── deprecate.rb │ ├── doctor.rb │ ├── errors.rb │ ├── exceptions.rb │ ├── ext.rb │ ├── ext │ ├── build_error.rb │ ├── builder.rb │ ├── cargo_builder.rb │ ├── cargo_builder │ │ └── link_flag_converter.rb │ ├── cmake_builder.rb │ ├── configure_builder.rb │ ├── ext_conf_builder.rb │ └── rake_builder.rb │ ├── gem_runner.rb │ ├── gemcutter_utilities.rb │ ├── gemcutter_utilities │ ├── webauthn_listener.rb │ ├── webauthn_listener │ │ └── response.rb │ └── webauthn_poller.rb │ ├── gemspec_helpers.rb │ ├── install_message.rb │ ├── install_update_options.rb │ ├── installer.rb │ ├── installer_uninstaller_utils.rb │ ├── local_remote_options.rb │ ├── name_tuple.rb │ ├── openssl.rb │ ├── package.rb │ ├── package │ ├── digest_io.rb │ ├── file_source.rb │ ├── io_source.rb │ ├── old.rb │ ├── source.rb │ ├── tar_header.rb │ ├── tar_reader.rb │ ├── tar_reader │ │ └── entry.rb │ └── tar_writer.rb │ ├── package_task.rb │ ├── path_support.rb │ ├── platform.rb │ ├── psych_tree.rb │ ├── query_utils.rb │ ├── rdoc.rb │ ├── remote_fetcher.rb │ ├── request.rb │ ├── request │ ├── connection_pools.rb │ ├── http_pool.rb │ └── https_pool.rb │ ├── request_set.rb │ ├── request_set │ ├── gem_dependency_api.rb │ ├── lockfile.rb │ └── lockfile │ │ ├── parser.rb │ │ └── tokenizer.rb │ ├── requirement.rb │ ├── resolver.rb │ ├── resolver │ ├── activation_request.rb │ ├── api_set.rb │ ├── api_set │ │ └── gem_parser.rb │ ├── api_specification.rb │ ├── best_set.rb │ ├── composed_set.rb │ ├── conflict.rb │ ├── current_set.rb │ ├── dependency_request.rb │ ├── git_set.rb │ ├── git_specification.rb │ ├── index_set.rb │ ├── index_specification.rb │ ├── installed_specification.rb │ ├── installer_set.rb │ ├── local_specification.rb │ ├── lock_set.rb │ ├── lock_specification.rb │ ├── requirement_list.rb │ ├── set.rb │ ├── source_set.rb │ ├── spec_specification.rb │ ├── specification.rb │ ├── stats.rb │ ├── vendor_set.rb │ └── vendor_specification.rb │ ├── s3_uri_signer.rb │ ├── safe_marshal.rb │ ├── safe_marshal │ ├── elements.rb │ ├── reader.rb │ └── visitors │ │ ├── stream_printer.rb │ │ ├── to_ruby.rb │ │ └── visitor.rb │ ├── safe_yaml.rb │ ├── security.rb │ ├── security │ ├── policies.rb │ ├── policy.rb │ ├── signer.rb │ └── trust_dir.rb │ ├── security_option.rb │ ├── source.rb │ ├── source │ ├── git.rb │ ├── installed.rb │ ├── local.rb │ ├── lock.rb │ ├── specific_file.rb │ └── vendor.rb │ ├── source_list.rb │ ├── spec_fetcher.rb │ ├── specification.rb │ ├── specification_policy.rb │ ├── specification_record.rb │ ├── ssl_certs │ ├── .document │ └── rubygems.org │ │ └── GlobalSign.pem │ ├── stub_specification.rb │ ├── target_rbconfig.rb │ ├── text.rb │ ├── uninstaller.rb │ ├── unknown_command_spell_checker.rb │ ├── update_suggestion.rb │ ├── uri.rb │ ├── uri_formatter.rb │ ├── user_interaction.rb │ ├── util.rb │ ├── util │ ├── licenses.rb │ └── list.rb │ ├── validator.rb │ ├── vendor │ ├── .document │ ├── molinillo │ │ ├── LICENSE │ │ └── lib │ │ │ ├── molinillo.rb │ │ │ └── molinillo │ │ │ ├── delegates │ │ │ ├── resolution_state.rb │ │ │ └── specification_provider.rb │ │ │ ├── dependency_graph.rb │ │ │ ├── dependency_graph │ │ │ ├── action.rb │ │ │ ├── add_edge_no_circular.rb │ │ │ ├── add_vertex.rb │ │ │ ├── delete_edge.rb │ │ │ ├── detach_vertex_named.rb │ │ │ ├── log.rb │ │ │ ├── set_payload.rb │ │ │ ├── tag.rb │ │ │ └── vertex.rb │ │ │ ├── errors.rb │ │ │ ├── gem_metadata.rb │ │ │ ├── modules │ │ │ ├── specification_provider.rb │ │ │ └── ui.rb │ │ │ ├── resolution.rb │ │ │ ├── resolver.rb │ │ │ └── state.rb │ ├── net-http │ │ ├── COPYING │ │ └── lib │ │ │ └── net │ │ │ ├── http.rb │ │ │ ├── http │ │ │ ├── exceptions.rb │ │ │ ├── generic_request.rb │ │ │ ├── header.rb │ │ │ ├── proxy_delta.rb │ │ │ ├── request.rb │ │ │ ├── requests.rb │ │ │ ├── response.rb │ │ │ ├── responses.rb │ │ │ └── status.rb │ │ │ └── https.rb │ ├── net-protocol │ │ ├── LICENSE.txt │ │ └── lib │ │ │ └── net │ │ │ └── protocol.rb │ ├── optparse │ │ ├── COPYING │ │ └── lib │ │ │ ├── optionparser.rb │ │ │ ├── optparse.rb │ │ │ └── optparse │ │ │ ├── ac.rb │ │ │ ├── date.rb │ │ │ ├── kwargs.rb │ │ │ ├── shellwords.rb │ │ │ ├── time.rb │ │ │ ├── uri.rb │ │ │ └── version.rb │ ├── resolv │ │ ├── COPYING │ │ └── lib │ │ │ └── resolv.rb │ ├── securerandom │ │ ├── COPYING │ │ └── lib │ │ │ └── securerandom.rb │ ├── timeout │ │ ├── COPYING │ │ └── lib │ │ │ └── timeout.rb │ ├── tsort │ │ ├── LICENSE.txt │ │ └── lib │ │ │ └── tsort.rb │ └── uri │ │ ├── COPYING │ │ └── lib │ │ ├── uri.rb │ │ └── uri │ │ ├── common.rb │ │ ├── file.rb │ │ ├── ftp.rb │ │ ├── generic.rb │ │ ├── http.rb │ │ ├── https.rb │ │ ├── ldap.rb │ │ ├── ldaps.rb │ │ ├── mailto.rb │ │ ├── rfc2396_parser.rb │ │ ├── rfc3986_parser.rb │ │ ├── version.rb │ │ ├── ws.rb │ │ └── wss.rb │ ├── vendored_molinillo.rb │ ├── vendored_net_http.rb │ ├── vendored_optparse.rb │ ├── vendored_securerandom.rb │ ├── vendored_timeout.rb │ ├── vendored_tsort.rb │ ├── version.rb │ ├── version_option.rb │ ├── win_platform.rb │ └── yaml_serializer.rb ├── rubygems-update.gemspec ├── setup.rb ├── test ├── rubygems │ ├── alternate_cert.pem │ ├── alternate_cert_32.pem │ ├── alternate_key.pem │ ├── bad_rake.rb │ ├── bundler_test_gem.rb │ ├── ca_cert.pem │ ├── child_cert.pem │ ├── child_cert_32.pem │ ├── child_key.pem │ ├── client.pem │ ├── data │ │ ├── excon-0.7.7.gemspec.rz │ │ ├── gem-private_key.pem │ │ ├── gem-public_cert.pem │ │ ├── null-required-ruby-version.gemspec.rz │ │ ├── null-required-rubygems-version.gemspec.rz │ │ └── pry-0.4.7.gemspec.rz │ ├── encrypted_private_key.pem │ ├── expired_cert.pem │ ├── fake_certlib │ │ └── openssl.rb │ ├── foo │ │ └── discover.rb │ ├── future_cert.pem │ ├── future_cert_32.pem │ ├── good_rake.rb │ ├── grandchild_cert.pem │ ├── grandchild_cert_32.pem │ ├── grandchild_key.pem │ ├── helper.rb │ ├── installer_test_case.rb │ ├── invalid_client.pem │ ├── invalid_issuer_cert.pem │ ├── invalid_issuer_cert_32.pem │ ├── invalid_key.pem │ ├── invalid_signer_cert.pem │ ├── invalid_signer_cert_32.pem │ ├── invalidchild_cert.pem │ ├── invalidchild_cert_32.pem │ ├── invalidchild_key.pem │ ├── mock_gem_ui.rb │ ├── multifactor_auth_utilities.rb │ ├── package │ │ └── tar_test_case.rb │ ├── packages │ │ ├── Bluebie-legs-0.6.2.gem │ │ ├── ascii_binder-0.1.10.1.gem │ │ └── ill-formatted-platform-1.0.0.10.gem │ ├── plugin │ │ ├── load │ │ │ └── rubygems_plugin.rb │ │ ├── scripterror │ │ │ └── rubygems_plugin.rb │ │ └── standarderror │ │ │ └── rubygems_plugin.rb │ ├── private3072_key.pem │ ├── private_ec_key.pem │ ├── private_key.pem │ ├── public3072_cert.pem │ ├── public_cert.pem │ ├── public_cert_32.pem │ ├── public_key.pem │ ├── rubygems │ │ └── commands │ │ │ ├── crash_command.rb │ │ │ ├── ins_command.rb │ │ │ └── interrupt_command.rb │ ├── rubygems_plugin.rb │ ├── sff │ │ └── discover.rb │ ├── simple_gem.rb │ ├── specifications │ │ ├── bar-0.0.2.gemspec │ │ ├── foo-0.0.1-x86-mswin32.gemspec │ │ └── rubyforge-0.0.1.gemspec │ ├── ssl_cert.pem │ ├── ssl_key.pem │ ├── test_bundled_ca.rb │ ├── test_config.rb │ ├── test_deprecate.rb │ ├── test_exit.rb │ ├── test_gem.rb │ ├── test_gem_available_set.rb │ ├── test_gem_bundler_version_finder.rb │ ├── test_gem_ci_detector.rb │ ├── test_gem_command.rb │ ├── test_gem_command_manager.rb │ ├── test_gem_commands_build_command.rb │ ├── test_gem_commands_cert_command.rb │ ├── test_gem_commands_check_command.rb │ ├── test_gem_commands_cleanup_command.rb │ ├── test_gem_commands_contents_command.rb │ ├── test_gem_commands_dependency_command.rb │ ├── test_gem_commands_environment_command.rb │ ├── test_gem_commands_exec_command.rb │ ├── test_gem_commands_fetch_command.rb │ ├── test_gem_commands_help_command.rb │ ├── test_gem_commands_info_command.rb │ ├── test_gem_commands_install_command.rb │ ├── test_gem_commands_list_command.rb │ ├── test_gem_commands_lock_command.rb │ ├── test_gem_commands_mirror.rb │ ├── test_gem_commands_open_command.rb │ ├── test_gem_commands_outdated_command.rb │ ├── test_gem_commands_owner_command.rb │ ├── test_gem_commands_pristine_command.rb │ ├── test_gem_commands_push_command.rb │ ├── test_gem_commands_rebuild_command.rb │ ├── test_gem_commands_search_command.rb │ ├── test_gem_commands_server_command.rb │ ├── test_gem_commands_setup_command.rb │ ├── test_gem_commands_signin_command.rb │ ├── test_gem_commands_signout_command.rb │ ├── test_gem_commands_sources_command.rb │ ├── test_gem_commands_specification_command.rb │ ├── test_gem_commands_stale_command.rb │ ├── test_gem_commands_uninstall_command.rb │ ├── test_gem_commands_unpack_command.rb │ ├── test_gem_commands_update_command.rb │ ├── test_gem_commands_which_command.rb │ ├── test_gem_commands_yank_command.rb │ ├── test_gem_config_file.rb │ ├── test_gem_console_ui.rb │ ├── test_gem_dependency.rb │ ├── test_gem_dependency_installer.rb │ ├── test_gem_dependency_list.rb │ ├── test_gem_dependency_resolution_error.rb │ ├── test_gem_doctor.rb │ ├── test_gem_ext_builder.rb │ ├── test_gem_ext_cargo_builder.rb │ ├── test_gem_ext_cargo_builder │ │ ├── custom_name │ │ │ ├── .gitignore │ │ │ ├── custom_name.gemspec │ │ │ ├── ext │ │ │ │ └── custom_name_lib │ │ │ │ │ ├── Cargo.lock │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── lib │ │ │ │ └── custom_name.rb │ │ └── rust_ruby_example │ │ │ ├── .gitignore │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── rust_ruby_example.gemspec │ │ │ └── src │ │ │ └── lib.rs │ ├── test_gem_ext_cargo_builder_link_flag_converter.rb │ ├── test_gem_ext_cargo_builder_unit.rb │ ├── test_gem_ext_cmake_builder.rb │ ├── test_gem_ext_configure_builder.rb │ ├── test_gem_ext_ext_conf_builder.rb │ ├── test_gem_ext_rake_builder.rb │ ├── test_gem_gem_runner.rb │ ├── test_gem_gemcutter_utilities.rb │ ├── test_gem_impossible_dependencies_error.rb │ ├── test_gem_install_update_options.rb │ ├── test_gem_installer.rb │ ├── test_gem_local_remote_options.rb │ ├── test_gem_name_tuple.rb │ ├── test_gem_package.rb │ ├── test_gem_package_old.rb │ ├── test_gem_package_tar_header.rb │ ├── test_gem_package_tar_header_ractor.rb │ ├── test_gem_package_tar_reader.rb │ ├── test_gem_package_tar_reader_entry.rb │ ├── test_gem_package_tar_writer.rb │ ├── test_gem_package_task.rb │ ├── test_gem_path_support.rb │ ├── test_gem_platform.rb │ ├── test_gem_rdoc.rb │ ├── test_gem_remote_fetcher.rb │ ├── test_gem_remote_fetcher_local_server.rb │ ├── test_gem_remote_fetcher_local_ssl_server.rb │ ├── test_gem_remote_fetcher_s3.rb │ ├── test_gem_request.rb │ ├── test_gem_request_connection_pools.rb │ ├── test_gem_request_set.rb │ ├── test_gem_request_set_gem_dependency_api.rb │ ├── test_gem_request_set_lockfile.rb │ ├── test_gem_request_set_lockfile_parser.rb │ ├── test_gem_request_set_lockfile_tokenizer.rb │ ├── test_gem_requirement.rb │ ├── test_gem_resolver.rb │ ├── test_gem_resolver_activation_request.rb │ ├── test_gem_resolver_api_set.rb │ ├── test_gem_resolver_api_specification.rb │ ├── test_gem_resolver_best_set.rb │ ├── test_gem_resolver_composed_set.rb │ ├── test_gem_resolver_conflict.rb │ ├── test_gem_resolver_dependency_request.rb │ ├── test_gem_resolver_git_set.rb │ ├── test_gem_resolver_git_specification.rb │ ├── test_gem_resolver_index_set.rb │ ├── test_gem_resolver_index_specification.rb │ ├── test_gem_resolver_installed_specification.rb │ ├── test_gem_resolver_installer_set.rb │ ├── test_gem_resolver_local_specification.rb │ ├── test_gem_resolver_lock_set.rb │ ├── test_gem_resolver_lock_specification.rb │ ├── test_gem_resolver_requirement_list.rb │ ├── test_gem_resolver_specification.rb │ ├── test_gem_resolver_vendor_set.rb │ ├── test_gem_resolver_vendor_specification.rb │ ├── test_gem_safe_marshal.rb │ ├── test_gem_safe_yaml.rb │ ├── test_gem_security.rb │ ├── test_gem_security_policy.rb │ ├── test_gem_security_signer.rb │ ├── test_gem_security_trust_dir.rb │ ├── test_gem_silent_ui.rb │ ├── test_gem_source.rb │ ├── test_gem_source_fetch_problem.rb │ ├── test_gem_source_git.rb │ ├── test_gem_source_installed.rb │ ├── test_gem_source_list.rb │ ├── test_gem_source_local.rb │ ├── test_gem_source_lock.rb │ ├── test_gem_source_specific_file.rb │ ├── test_gem_source_subpath_problem.rb │ ├── test_gem_source_vendor.rb │ ├── test_gem_spec_fetcher.rb │ ├── test_gem_specification.rb │ ├── test_gem_stream_ui.rb │ ├── test_gem_stub_specification.rb │ ├── test_gem_text.rb │ ├── test_gem_uninstaller.rb │ ├── test_gem_unsatisfiable_dependency_error.rb │ ├── test_gem_update_suggestion.rb │ ├── test_gem_uri.rb │ ├── test_gem_uri_formatter.rb │ ├── test_gem_util.rb │ ├── test_gem_validator.rb │ ├── test_gem_version.rb │ ├── test_gem_version_option.rb │ ├── test_kernel.rb │ ├── test_project_sanity.rb │ ├── test_remote_fetch_error.rb │ ├── test_require.rb │ ├── test_rubygems.rb │ ├── test_webauthn_listener.rb │ ├── test_webauthn_listener_response.rb │ ├── test_webauthn_poller.rb │ ├── utilities.rb │ ├── wrong_key_cert.pem │ └── wrong_key_cert_32.pem ├── test_changelog_generator.rb └── test_gemspec.rb └── tool ├── automatiek ├── connection_pool-v2.4.1.patch ├── molinillo-master.patch ├── net-http-persistent-v4.0.6.patch ├── net-http-v0.7.0.patch ├── optparse-v0.8.0.patch ├── resolv-v0.6.3.patch ├── thor-v1.4.0.patch ├── timeout-v0.4.3.patch └── vendor.rb ├── bundler ├── dev_gems.rb ├── dev_gems.rb.lock ├── lint_gems.rb ├── lint_gems.rb.lock ├── release_gems.rb ├── release_gems.rb.lock ├── rubocop_gems.rb ├── rubocop_gems.rb.lock ├── standard_gems.rb ├── standard_gems.rb.lock ├── test_gems.rb ├── test_gems.rb.lock ├── vendor_gems.rb └── vendor_gems.rb.lock ├── changelog.rb ├── cops └── deprecations.rb ├── create_certs.rb ├── create_certs.sh ├── create_encrypted_key.rb ├── generate_spdx_license_list.rb ├── release.rb └── update_bundled_ca_certificates.rb /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH__SYSTEM: "true" 3 | -------------------------------------------------------------------------------- /.changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.changelog.yml -------------------------------------------------------------------------------- /.codespellignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.codespellignore -------------------------------------------------------------------------------- /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.codespellrc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.gitattributes -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.githooks/pre-commit-rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.githooks/pre-commit-rubocop -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://rubycentral.org/#/portal/signup 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bundler-related-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/ISSUE_TEMPLATE/bundler-related-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/bundler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/bundler.yml -------------------------------------------------------------------------------- /.github/workflows/daily-bundler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/daily-bundler.yml -------------------------------------------------------------------------------- /.github/workflows/daily-rubygems.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/daily-rubygems.yml -------------------------------------------------------------------------------- /.github/workflows/install-rubygems.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/install-rubygems.yml -------------------------------------------------------------------------------- /.github/workflows/lint/pylock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/lint/pylock.toml -------------------------------------------------------------------------------- /.github/workflows/lint/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/lint/requirements.in -------------------------------------------------------------------------------- /.github/workflows/read-only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/read-only.yml -------------------------------------------------------------------------------- /.github/workflows/realworld-bundler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/realworld-bundler.yml -------------------------------------------------------------------------------- /.github/workflows/ruby-core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/ruby-core.yml -------------------------------------------------------------------------------- /.github/workflows/rubygems.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/rubygems.yml -------------------------------------------------------------------------------- /.github/workflows/scorecards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/scorecards.yml -------------------------------------------------------------------------------- /.github/workflows/sync-ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/sync-ruby.yml -------------------------------------------------------------------------------- /.github/workflows/system-rubygems-bundler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/system-rubygems-bundler.yml -------------------------------------------------------------------------------- /.github/workflows/truffleruby-bundler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/truffleruby-bundler.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/ubuntu-lint.yml -------------------------------------------------------------------------------- /.github/workflows/weekly-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.github/workflows/weekly-update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/MIT.txt -------------------------------------------------------------------------------- /Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/Manifest.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bin/mdl -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rake.cmd: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | @"ruby.exe" -x "%~dpn0" %* 3 | -------------------------------------------------------------------------------- /bin/ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bin/ronn -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bin/setup -------------------------------------------------------------------------------- /bundler/.changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/.changelog.yml -------------------------------------------------------------------------------- /bundler/.document: -------------------------------------------------------------------------------- 1 | # not in RDoc 2 | -------------------------------------------------------------------------------- /bundler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/.gitignore -------------------------------------------------------------------------------- /bundler/.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/.rspec -------------------------------------------------------------------------------- /bundler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/CHANGELOG.md -------------------------------------------------------------------------------- /bundler/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/LICENSE.md -------------------------------------------------------------------------------- /bundler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/README.md -------------------------------------------------------------------------------- /bundler/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/bin/bundle -------------------------------------------------------------------------------- /bundler/bin/parallel_rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/bin/parallel_rspec -------------------------------------------------------------------------------- /bundler/bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/bin/rspec -------------------------------------------------------------------------------- /bundler/bundler.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/bundler.gemspec -------------------------------------------------------------------------------- /bundler/exe/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/exe/bundle -------------------------------------------------------------------------------- /bundler/exe/bundler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/exe/bundler -------------------------------------------------------------------------------- /bundler/lib/bundler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/.document: -------------------------------------------------------------------------------- 1 | # not in RDoc 2 | -------------------------------------------------------------------------------- /bundler/lib/bundler/build_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/build_metadata.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/capistrano.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/capistrano.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/checksum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/checksum.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/ci_detector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/ci_detector.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/add.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/add.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/binstubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/binstubs.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/cache.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/check.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/clean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/clean.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/common.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/config.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/console.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/doctor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/doctor.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/doctor/diagnose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/doctor/diagnose.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/doctor/ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/doctor/ssl.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/exec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/exec.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/fund.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/fund.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/gem.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/info.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/init.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/install.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/issue.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/list.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/lock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/lock.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/open.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/open.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/outdated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/outdated.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/platform.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/plugin.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/pristine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/pristine.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/remove.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/remove.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/show.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/show.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/cli/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/cli/update.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/compact_index_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/compact_index_client.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/constants.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/current_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/current_ruby.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/definition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/definition.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/dependency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/dependency.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/deployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/deployment.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/deprecate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/deprecate.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/digest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/digest.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/dsl.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/endpoint_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/endpoint_specification.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/env.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/environment_preserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/environment_preserver.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/errors.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/feature_flag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/feature_flag.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/fetcher.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/fetcher/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/fetcher/base.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/fetcher/compact_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/fetcher/compact_index.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/fetcher/dependency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/fetcher/dependency.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/fetcher/downloader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/fetcher/downloader.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/fetcher/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/fetcher/index.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/force_platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/force_platform.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/friendly_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/friendly_errors.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/gem_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/gem_helper.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/gem_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/gem_tasks.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/gem_version_promoter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/gem_version_promoter.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/index.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/injector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/injector.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/inline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/inline.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/installer.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/installer/gem_installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/installer/gem_installer.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/installer/standalone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/installer/standalone.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/lazy_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/lazy_specification.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/lockfile_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/lockfile_generator.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/lockfile_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/lockfile_parser.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/man/.document: -------------------------------------------------------------------------------- 1 | # Ignore all files in this directory 2 | -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-add.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-add.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-add.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-add.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-binstubs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-binstubs.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-binstubs.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-binstubs.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-cache.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-cache.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-cache.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-cache.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-check.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-check.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-check.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-check.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-clean.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-clean.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-clean.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-clean.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-config.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-config.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-config.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-console.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-console.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-console.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-console.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-doctor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-doctor.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-doctor.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-doctor.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-env.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-env.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-env.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-env.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-exec.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-exec.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-exec.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-exec.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-fund.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-fund.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-fund.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-fund.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-gem.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-gem.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-gem.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-gem.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-help.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-help.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-help.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-help.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-info.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-info.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-info.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-info.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-init.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-init.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-init.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-init.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-install.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-install.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-install.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-install.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-issue.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-issue.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-issue.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-issue.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-licenses.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-licenses.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-licenses.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-licenses.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-list.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-list.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-list.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-lock.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-lock.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-lock.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-lock.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-open.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-open.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-open.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-open.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-outdated.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-outdated.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-outdated.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-outdated.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-platform.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-platform.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-platform.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-platform.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-plugin.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-plugin.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-plugin.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-plugin.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-pristine.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-pristine.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-pristine.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-pristine.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-remove.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-remove.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-remove.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-remove.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-show.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-show.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-show.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-show.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-update.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-update.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-update.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-update.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-version.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-version.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle-version.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle-version.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle.1 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/bundle.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/bundle.1.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/gemfile.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/gemfile.5 -------------------------------------------------------------------------------- /bundler/lib/bundler/man/gemfile.5.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/gemfile.5.ronn -------------------------------------------------------------------------------- /bundler/lib/bundler/man/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/man/index.txt -------------------------------------------------------------------------------- /bundler/lib/bundler/match_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/match_metadata.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/match_platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/match_platform.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/match_remote_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/match_remote_metadata.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/materialization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/materialization.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/mirror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/mirror.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/plugin.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/plugin/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/plugin/api.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/plugin/api/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/plugin/api/source.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/plugin/dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/plugin/dsl.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/plugin/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/plugin/events.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/plugin/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/plugin/index.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/plugin/installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/plugin/installer.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/plugin/installer/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/plugin/installer/git.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/plugin/installer/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/plugin/installer/path.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/plugin/source_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/plugin/source_list.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/process_lock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/process_lock.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/remote_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/remote_specification.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/resolver.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/resolver/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/resolver/base.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/resolver/candidate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/resolver/candidate.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/resolver/incompatibility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/resolver/incompatibility.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/resolver/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/resolver/package.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/resolver/root.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/resolver/root.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/resolver/spec_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/resolver/spec_group.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/resolver/strategy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/resolver/strategy.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/retry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/retry.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/ruby_dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/ruby_dsl.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/ruby_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/ruby_version.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/rubygems_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/rubygems_ext.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/rubygems_gem_installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/rubygems_gem_installer.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/rubygems_integration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/rubygems_integration.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/runtime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/runtime.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/safe_marshal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/safe_marshal.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/self_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/self_manager.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/settings.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/settings/validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/settings/validator.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/setup.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/shared_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/shared_helpers.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/source.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/source/gemspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/source/gemspec.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/source/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/source/git.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/source/git/git_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/source/git/git_proxy.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/source/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/source/metadata.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/source/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/source/path.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/source/path/installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/source/path/installer.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/source/rubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/source/rubygems.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/source/rubygems/remote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/source/rubygems/remote.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/source_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/source_list.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/source_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/source_map.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/spec_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/spec_set.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/stub_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/stub_specification.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/templates/.document: -------------------------------------------------------------------------------- 1 | # Ignore all files in this directory 2 | -------------------------------------------------------------------------------- /bundler/lib/bundler/templates/Executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/templates/Executable -------------------------------------------------------------------------------- /bundler/lib/bundler/templates/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/templates/Gemfile -------------------------------------------------------------------------------- /bundler/lib/bundler/templates/newgem/Gemfile.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/templates/newgem/Gemfile.tt -------------------------------------------------------------------------------- /bundler/lib/bundler/templates/newgem/exe/newgem.tt: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require "<%= config[:namespaced_path] %>" 4 | -------------------------------------------------------------------------------- /bundler/lib/bundler/templates/newgem/rspec.tt: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /bundler/lib/bundler/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/ui.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/ui/rg_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/ui/rg_proxy.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/ui/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/ui/shell.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/ui/silent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/ui/silent.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/uri_credentials_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/uri_credentials_filter.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/uri_normalizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/uri_normalizer.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/.document -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb: -------------------------------------------------------------------------------- 1 | class Bundler::ConnectionPool 2 | VERSION = "2.5.4" 3 | end 4 | -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/fileutils/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/fileutils/COPYING -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/pub_grub/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/pub_grub/LICENSE.txt -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version.rb: -------------------------------------------------------------------------------- 1 | module Bundler::PubGrub 2 | VERSION = "0.5.0" 3 | end 4 | -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/securerandom/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/securerandom/COPYING -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/thor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/thor/LICENSE.md -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/thor/lib/thor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/thor/lib/thor.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/thor/lib/thor/version.rb: -------------------------------------------------------------------------------- 1 | class Bundler::Thor 2 | VERSION = "1.4.0" 3 | end 4 | -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/tsort/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/tsort/LICENSE.txt -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/tsort/lib/tsort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/tsort/lib/tsort.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/uri/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/uri/COPYING -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/uri/lib/uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/uri/lib/uri.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/uri/lib/uri/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/uri/lib/uri/file.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/uri/lib/uri/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/uri/lib/uri/http.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/uri/lib/uri/https.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/uri/lib/uri/https.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/uri/lib/uri/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/uri/lib/uri/ldap.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/uri/lib/uri/ldaps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/uri/lib/uri/ldaps.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/uri/lib/uri/ws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/uri/lib/uri/ws.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendor/uri/lib/uri/wss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendor/uri/lib/uri/wss.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendored_fileutils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendored_fileutils.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendored_net_http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendored_net_http.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendored_persistent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendored_persistent.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendored_pub_grub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendored_pub_grub.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendored_securerandom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendored_securerandom.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendored_thor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendored_thor.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendored_timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendored_timeout.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendored_tsort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendored_tsort.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vendored_uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vendored_uri.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/version.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/vlad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/vlad.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/worker.rb -------------------------------------------------------------------------------- /bundler/lib/bundler/yaml_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/lib/bundler/yaml_serializer.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/build_metadata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/build_metadata_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/bundler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/bundler_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/ci_detector_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/ci_detector_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/cli_common_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/cli_common_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/cli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/cli_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/current_ruby_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/current_ruby_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/definition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/definition_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/dependency_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/dependency_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/digest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/digest_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/dsl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/dsl_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/env_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/env_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/fetcher/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/fetcher/base_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/fetcher/dependency_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/fetcher/dependency_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/fetcher/downloader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/fetcher/downloader_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/fetcher/index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/fetcher/index_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/fetcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/fetcher_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/friendly_errors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/friendly_errors_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/gem_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/gem_helper_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/index_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/lockfile_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/lockfile_parser_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/mirror_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/mirror_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/plugin/api/source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/plugin/api/source_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/plugin/api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/plugin/api_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/plugin/dsl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/plugin/dsl_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/plugin/events_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/plugin/events_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/plugin/index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/plugin/index_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/plugin/installer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/plugin/installer_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/plugin/source_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/plugin/source_list_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/plugin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/plugin_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/resolver/candidate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/resolver/candidate_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/retry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/retry_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/ruby_dsl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/ruby_dsl_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/ruby_version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/ruby_version_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/settings/validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/settings/validator_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/settings_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/shared_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/shared_helpers_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/source/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/source/git_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/source/path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/source/path_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/source/rubygems_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/source/rubygems_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/source_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/source_list_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/source_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/spec_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/spec_set_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/specifications/foo.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/specifications/foo.gemspec -------------------------------------------------------------------------------- /bundler/spec/bundler/stub_specification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/stub_specification_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/ui/shell_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/ui/shell_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/ui_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/ui_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/worker_spec.rb -------------------------------------------------------------------------------- /bundler/spec/bundler/yaml_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/bundler/yaml_serializer_spec.rb -------------------------------------------------------------------------------- /bundler/spec/cache/cache_path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/cache/cache_path_spec.rb -------------------------------------------------------------------------------- /bundler/spec/cache/gems_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/cache/gems_spec.rb -------------------------------------------------------------------------------- /bundler/spec/cache/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/cache/git_spec.rb -------------------------------------------------------------------------------- /bundler/spec/cache/path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/cache/path_spec.rb -------------------------------------------------------------------------------- /bundler/spec/cache/platform_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/cache/platform_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/add_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/add_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/binstubs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/binstubs_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/cache_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/check_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/clean_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/clean_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/config_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/console_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/console_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/doctor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/doctor_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/exec_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/exec_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/fund_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/fund_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/help_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/help_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/info_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/info_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/init_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/init_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/install_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/issue_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/licenses_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/licenses_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/list_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/lock_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/lock_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/newgem_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/newgem_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/open_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/open_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/outdated_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/outdated_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/platform_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/platform_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/pristine_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/pristine_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/remove_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/remove_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/show_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/ssl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/ssl_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/update_spec.rb -------------------------------------------------------------------------------- /bundler/spec/commands/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/commands/version_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/binstubs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/binstubs_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/bundler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/bundler_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/deploy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/deploy_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/failure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/failure_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/force_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/force_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gemfile/gemspec_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gemfile/gemspec_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gemfile/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gemfile/git_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gemfile/groups_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gemfile/groups_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gemfile/path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gemfile/path_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gemfile/ruby_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gemfile/ruby_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gemfile/sources_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gemfile/sources_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gemfile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gemfile_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gems/env_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gems/env_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gems/flex_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gems/flex_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gems/fund_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gems/fund_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gems/mirror_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gems/mirror_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gems/resolving_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gems/resolving_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gems/standalone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gems/standalone_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gems/win32_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gems/win32_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/gemspecs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/gemspecs_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/git_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/global_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/global_cache_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/path_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/prereleases_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/prereleases_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/process_lock_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/process_lock_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/security_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/security_policy_spec.rb -------------------------------------------------------------------------------- /bundler/spec/install/yanked_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/install/yanked_spec.rb -------------------------------------------------------------------------------- /bundler/spec/lock/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/lock/git_spec.rb -------------------------------------------------------------------------------- /bundler/spec/lock/lockfile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/lock/lockfile_spec.rb -------------------------------------------------------------------------------- /bundler/spec/other/cli_dispatch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/other/cli_dispatch_spec.rb -------------------------------------------------------------------------------- /bundler/spec/other/cli_man_pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/other/cli_man_pages_spec.rb -------------------------------------------------------------------------------- /bundler/spec/other/ext_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/other/ext_spec.rb -------------------------------------------------------------------------------- /bundler/spec/other/major_deprecation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/other/major_deprecation_spec.rb -------------------------------------------------------------------------------- /bundler/spec/plugins/command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/plugins/command_spec.rb -------------------------------------------------------------------------------- /bundler/spec/plugins/hook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/plugins/hook_spec.rb -------------------------------------------------------------------------------- /bundler/spec/plugins/install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/plugins/install_spec.rb -------------------------------------------------------------------------------- /bundler/spec/plugins/list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/plugins/list_spec.rb -------------------------------------------------------------------------------- /bundler/spec/plugins/source/example_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/plugins/source/example_spec.rb -------------------------------------------------------------------------------- /bundler/spec/plugins/source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/plugins/source_spec.rb -------------------------------------------------------------------------------- /bundler/spec/plugins/uninstall_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/plugins/uninstall_spec.rb -------------------------------------------------------------------------------- /bundler/spec/quality_es_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/quality_es_spec.rb -------------------------------------------------------------------------------- /bundler/spec/quality_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/quality_spec.rb -------------------------------------------------------------------------------- /bundler/spec/realworld/double_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/realworld/double_check_spec.rb -------------------------------------------------------------------------------- /bundler/spec/realworld/edgecases_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/realworld/edgecases_spec.rb -------------------------------------------------------------------------------- /bundler/spec/realworld/ffi_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/realworld/ffi_spec.rb -------------------------------------------------------------------------------- /bundler/spec/realworld/fixtures/warbler/.gitignore: -------------------------------------------------------------------------------- 1 | *.jar 2 | -------------------------------------------------------------------------------- /bundler/spec/realworld/fixtures/warbler/bin/warbler-example.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | puts require "bundler/setup" 4 | -------------------------------------------------------------------------------- /bundler/spec/realworld/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/realworld/git_spec.rb -------------------------------------------------------------------------------- /bundler/spec/realworld/parallel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/realworld/parallel_spec.rb -------------------------------------------------------------------------------- /bundler/spec/realworld/slow_perf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/realworld/slow_perf_spec.rb -------------------------------------------------------------------------------- /bundler/spec/resolver/basic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/resolver/basic_spec.rb -------------------------------------------------------------------------------- /bundler/spec/resolver/platform_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/resolver/platform_spec.rb -------------------------------------------------------------------------------- /bundler/spec/runtime/env_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/runtime/env_helpers_spec.rb -------------------------------------------------------------------------------- /bundler/spec/runtime/executable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/runtime/executable_spec.rb -------------------------------------------------------------------------------- /bundler/spec/runtime/gem_tasks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/runtime/gem_tasks_spec.rb -------------------------------------------------------------------------------- /bundler/spec/runtime/inline_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/runtime/inline_spec.rb -------------------------------------------------------------------------------- /bundler/spec/runtime/load_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/runtime/load_spec.rb -------------------------------------------------------------------------------- /bundler/spec/runtime/platform_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/runtime/platform_spec.rb -------------------------------------------------------------------------------- /bundler/spec/runtime/require_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/runtime/require_spec.rb -------------------------------------------------------------------------------- /bundler/spec/runtime/requiring_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/runtime/requiring_spec.rb -------------------------------------------------------------------------------- /bundler/spec/runtime/self_management_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/runtime/self_management_spec.rb -------------------------------------------------------------------------------- /bundler/spec/runtime/setup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/runtime/setup_spec.rb -------------------------------------------------------------------------------- /bundler/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/spec_helper.rb -------------------------------------------------------------------------------- /bundler/spec/support/activate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/activate.rb -------------------------------------------------------------------------------- /bundler/spec/support/artifice/endpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/artifice/endpoint.rb -------------------------------------------------------------------------------- /bundler/spec/support/artifice/fail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/artifice/fail.rb -------------------------------------------------------------------------------- /bundler/spec/support/artifice/vcr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/artifice/vcr.rb -------------------------------------------------------------------------------- /bundler/spec/support/artifice/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/artifice/windows.rb -------------------------------------------------------------------------------- /bundler/spec/support/build_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/build_metadata.rb -------------------------------------------------------------------------------- /bundler/spec/support/builders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/builders.rb -------------------------------------------------------------------------------- /bundler/spec/support/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/bundle -------------------------------------------------------------------------------- /bundler/spec/support/bundle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/bundle.rb -------------------------------------------------------------------------------- /bundler/spec/support/checksums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/checksums.rb -------------------------------------------------------------------------------- /bundler/spec/support/command_execution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/command_execution.rb -------------------------------------------------------------------------------- /bundler/spec/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/env.rb -------------------------------------------------------------------------------- /bundler/spec/support/filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/filters.rb -------------------------------------------------------------------------------- /bundler/spec/support/hax.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/hax.rb -------------------------------------------------------------------------------- /bundler/spec/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/helpers.rb -------------------------------------------------------------------------------- /bundler/spec/support/indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/indexes.rb -------------------------------------------------------------------------------- /bundler/spec/support/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/matchers.rb -------------------------------------------------------------------------------- /bundler/spec/support/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/options.rb -------------------------------------------------------------------------------- /bundler/spec/support/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/path.rb -------------------------------------------------------------------------------- /bundler/spec/support/permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/permissions.rb -------------------------------------------------------------------------------- /bundler/spec/support/platforms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/platforms.rb -------------------------------------------------------------------------------- /bundler/spec/support/rubygems_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/rubygems_ext.rb -------------------------------------------------------------------------------- /bundler/spec/support/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/setup.rb -------------------------------------------------------------------------------- /bundler/spec/support/subprocess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/subprocess.rb -------------------------------------------------------------------------------- /bundler/spec/support/switch_rubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/switch_rubygems.rb -------------------------------------------------------------------------------- /bundler/spec/support/the_bundle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/the_bundle.rb -------------------------------------------------------------------------------- /bundler/spec/support/vendored_net_http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/support/vendored_net_http.rb -------------------------------------------------------------------------------- /bundler/spec/update/force_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/update/force_spec.rb -------------------------------------------------------------------------------- /bundler/spec/update/gemfile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/update/gemfile_spec.rb -------------------------------------------------------------------------------- /bundler/spec/update/gems/fund_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/update/gems/fund_spec.rb -------------------------------------------------------------------------------- /bundler/spec/update/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/update/git_spec.rb -------------------------------------------------------------------------------- /bundler/spec/update/path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/bundler/spec/update/path_spec.rb -------------------------------------------------------------------------------- /doc/MAINTAINERS.txt: -------------------------------------------------------------------------------- 1 | SHIBATA Hiroshi (@hsbt) 2 | -------------------------------------------------------------------------------- /doc/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/RELEASE.md -------------------------------------------------------------------------------- /doc/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/UPGRADING.md -------------------------------------------------------------------------------- /doc/bundler/POLICIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/POLICIES.md -------------------------------------------------------------------------------- /doc/bundler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/README.md -------------------------------------------------------------------------------- /doc/bundler/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /doc/bundler/contributing/BUG_TRIAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/contributing/BUG_TRIAGE.md -------------------------------------------------------------------------------- /doc/bundler/contributing/COMMUNITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/contributing/COMMUNITY.md -------------------------------------------------------------------------------- /doc/bundler/contributing/HOW_YOU_CAN_HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/contributing/HOW_YOU_CAN_HELP.md -------------------------------------------------------------------------------- /doc/bundler/contributing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/contributing/README.md -------------------------------------------------------------------------------- /doc/bundler/development/DEBUGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/development/DEBUGGING.md -------------------------------------------------------------------------------- /doc/bundler/development/NEW_FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/development/NEW_FEATURES.md -------------------------------------------------------------------------------- /doc/bundler/development/PULL_REQUESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/development/PULL_REQUESTS.md -------------------------------------------------------------------------------- /doc/bundler/development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/development/README.md -------------------------------------------------------------------------------- /doc/bundler/development/SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/development/SETUP.md -------------------------------------------------------------------------------- /doc/bundler/development/windows-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/development/windows-terminal.png -------------------------------------------------------------------------------- /doc/bundler/documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/documentation/README.md -------------------------------------------------------------------------------- /doc/bundler/documentation/VISION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/documentation/VISION.md -------------------------------------------------------------------------------- /doc/bundler/documentation/WRITING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/documentation/WRITING.md -------------------------------------------------------------------------------- /doc/bundler/playbooks/MERGING_A_PR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/playbooks/MERGING_A_PR.md -------------------------------------------------------------------------------- /doc/bundler/playbooks/TEAM_CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/bundler/playbooks/TEAM_CHANGES.md -------------------------------------------------------------------------------- /doc/rubygems/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/rubygems/CONTRIBUTING.md -------------------------------------------------------------------------------- /doc/rubygems/POLICIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/doc/rubygems/POLICIES.md -------------------------------------------------------------------------------- /exe/gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/exe/gem -------------------------------------------------------------------------------- /exe/update_rubygems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/exe/update_rubygems -------------------------------------------------------------------------------- /hide_lib_for_update/note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/hide_lib_for_update/note.txt -------------------------------------------------------------------------------- /lib/rubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems.rb -------------------------------------------------------------------------------- /lib/rubygems/available_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/available_set.rb -------------------------------------------------------------------------------- /lib/rubygems/basic_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/basic_specification.rb -------------------------------------------------------------------------------- /lib/rubygems/bundler_version_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/bundler_version_finder.rb -------------------------------------------------------------------------------- /lib/rubygems/ci_detector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/ci_detector.rb -------------------------------------------------------------------------------- /lib/rubygems/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/command.rb -------------------------------------------------------------------------------- /lib/rubygems/command_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/command_manager.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/build_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/build_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/cert_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/cert_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/check_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/check_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/cleanup_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/cleanup_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/contents_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/contents_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/dependency_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/dependency_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/environment_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/environment_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/exec_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/exec_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/fetch_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/fetch_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/help_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/help_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/info_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/info_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/install_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/install_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/list_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/list_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/lock_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/lock_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/mirror_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/mirror_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/open_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/open_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/outdated_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/outdated_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/owner_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/owner_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/pristine_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/pristine_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/push_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/push_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/rdoc_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/rdoc_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/rebuild_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/rebuild_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/search_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/search_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/server_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/server_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/setup_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/setup_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/signin_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/signin_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/signout_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/signout_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/sources_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/sources_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/stale_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/stale_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/uninstall_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/uninstall_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/unpack_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/unpack_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/update_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/update_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/which_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/which_command.rb -------------------------------------------------------------------------------- /lib/rubygems/commands/yank_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/commands/yank_command.rb -------------------------------------------------------------------------------- /lib/rubygems/config_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/config_file.rb -------------------------------------------------------------------------------- /lib/rubygems/core_ext/kernel_gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/core_ext/kernel_gem.rb -------------------------------------------------------------------------------- /lib/rubygems/core_ext/kernel_require.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/core_ext/kernel_require.rb -------------------------------------------------------------------------------- /lib/rubygems/core_ext/kernel_warn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/core_ext/kernel_warn.rb -------------------------------------------------------------------------------- /lib/rubygems/core_ext/tcpsocket_init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/core_ext/tcpsocket_init.rb -------------------------------------------------------------------------------- /lib/rubygems/defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/defaults.rb -------------------------------------------------------------------------------- /lib/rubygems/dependency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/dependency.rb -------------------------------------------------------------------------------- /lib/rubygems/dependency_installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/dependency_installer.rb -------------------------------------------------------------------------------- /lib/rubygems/dependency_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/dependency_list.rb -------------------------------------------------------------------------------- /lib/rubygems/deprecate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/deprecate.rb -------------------------------------------------------------------------------- /lib/rubygems/doctor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/doctor.rb -------------------------------------------------------------------------------- /lib/rubygems/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/errors.rb -------------------------------------------------------------------------------- /lib/rubygems/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/exceptions.rb -------------------------------------------------------------------------------- /lib/rubygems/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/ext.rb -------------------------------------------------------------------------------- /lib/rubygems/ext/build_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/ext/build_error.rb -------------------------------------------------------------------------------- /lib/rubygems/ext/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/ext/builder.rb -------------------------------------------------------------------------------- /lib/rubygems/ext/cargo_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/ext/cargo_builder.rb -------------------------------------------------------------------------------- /lib/rubygems/ext/cmake_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/ext/cmake_builder.rb -------------------------------------------------------------------------------- /lib/rubygems/ext/configure_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/ext/configure_builder.rb -------------------------------------------------------------------------------- /lib/rubygems/ext/ext_conf_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/ext/ext_conf_builder.rb -------------------------------------------------------------------------------- /lib/rubygems/ext/rake_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/ext/rake_builder.rb -------------------------------------------------------------------------------- /lib/rubygems/gem_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/gem_runner.rb -------------------------------------------------------------------------------- /lib/rubygems/gemcutter_utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/gemcutter_utilities.rb -------------------------------------------------------------------------------- /lib/rubygems/gemspec_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/gemspec_helpers.rb -------------------------------------------------------------------------------- /lib/rubygems/install_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/install_message.rb -------------------------------------------------------------------------------- /lib/rubygems/install_update_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/install_update_options.rb -------------------------------------------------------------------------------- /lib/rubygems/installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/installer.rb -------------------------------------------------------------------------------- /lib/rubygems/installer_uninstaller_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/installer_uninstaller_utils.rb -------------------------------------------------------------------------------- /lib/rubygems/local_remote_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/local_remote_options.rb -------------------------------------------------------------------------------- /lib/rubygems/name_tuple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/name_tuple.rb -------------------------------------------------------------------------------- /lib/rubygems/openssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/openssl.rb -------------------------------------------------------------------------------- /lib/rubygems/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/package.rb -------------------------------------------------------------------------------- /lib/rubygems/package/digest_io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/package/digest_io.rb -------------------------------------------------------------------------------- /lib/rubygems/package/file_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/package/file_source.rb -------------------------------------------------------------------------------- /lib/rubygems/package/io_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/package/io_source.rb -------------------------------------------------------------------------------- /lib/rubygems/package/old.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/package/old.rb -------------------------------------------------------------------------------- /lib/rubygems/package/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/package/source.rb -------------------------------------------------------------------------------- /lib/rubygems/package/tar_header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/package/tar_header.rb -------------------------------------------------------------------------------- /lib/rubygems/package/tar_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/package/tar_reader.rb -------------------------------------------------------------------------------- /lib/rubygems/package/tar_reader/entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/package/tar_reader/entry.rb -------------------------------------------------------------------------------- /lib/rubygems/package/tar_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/package/tar_writer.rb -------------------------------------------------------------------------------- /lib/rubygems/package_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/package_task.rb -------------------------------------------------------------------------------- /lib/rubygems/path_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/path_support.rb -------------------------------------------------------------------------------- /lib/rubygems/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/platform.rb -------------------------------------------------------------------------------- /lib/rubygems/psych_tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/psych_tree.rb -------------------------------------------------------------------------------- /lib/rubygems/query_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/query_utils.rb -------------------------------------------------------------------------------- /lib/rubygems/rdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/rdoc.rb -------------------------------------------------------------------------------- /lib/rubygems/remote_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/remote_fetcher.rb -------------------------------------------------------------------------------- /lib/rubygems/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/request.rb -------------------------------------------------------------------------------- /lib/rubygems/request/connection_pools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/request/connection_pools.rb -------------------------------------------------------------------------------- /lib/rubygems/request/http_pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/request/http_pool.rb -------------------------------------------------------------------------------- /lib/rubygems/request/https_pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/request/https_pool.rb -------------------------------------------------------------------------------- /lib/rubygems/request_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/request_set.rb -------------------------------------------------------------------------------- /lib/rubygems/request_set/lockfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/request_set/lockfile.rb -------------------------------------------------------------------------------- /lib/rubygems/request_set/lockfile/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/request_set/lockfile/parser.rb -------------------------------------------------------------------------------- /lib/rubygems/requirement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/requirement.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/activation_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/activation_request.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/api_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/api_set.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/api_set/gem_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/api_set/gem_parser.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/api_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/api_specification.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/best_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/best_set.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/composed_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/composed_set.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/conflict.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/conflict.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/current_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/current_set.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/dependency_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/dependency_request.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/git_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/git_set.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/git_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/git_specification.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/index_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/index_set.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/index_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/index_specification.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/installer_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/installer_set.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/local_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/local_specification.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/lock_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/lock_set.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/lock_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/lock_specification.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/requirement_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/requirement_list.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/set.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/source_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/source_set.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/spec_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/spec_specification.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/specification.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/stats.rb -------------------------------------------------------------------------------- /lib/rubygems/resolver/vendor_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/resolver/vendor_set.rb -------------------------------------------------------------------------------- /lib/rubygems/s3_uri_signer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/s3_uri_signer.rb -------------------------------------------------------------------------------- /lib/rubygems/safe_marshal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/safe_marshal.rb -------------------------------------------------------------------------------- /lib/rubygems/safe_marshal/elements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/safe_marshal/elements.rb -------------------------------------------------------------------------------- /lib/rubygems/safe_marshal/reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/safe_marshal/reader.rb -------------------------------------------------------------------------------- /lib/rubygems/safe_yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/safe_yaml.rb -------------------------------------------------------------------------------- /lib/rubygems/security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/security.rb -------------------------------------------------------------------------------- /lib/rubygems/security/policies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/security/policies.rb -------------------------------------------------------------------------------- /lib/rubygems/security/policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/security/policy.rb -------------------------------------------------------------------------------- /lib/rubygems/security/signer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/security/signer.rb -------------------------------------------------------------------------------- /lib/rubygems/security/trust_dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/security/trust_dir.rb -------------------------------------------------------------------------------- /lib/rubygems/security_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/security_option.rb -------------------------------------------------------------------------------- /lib/rubygems/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/source.rb -------------------------------------------------------------------------------- /lib/rubygems/source/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/source/git.rb -------------------------------------------------------------------------------- /lib/rubygems/source/installed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/source/installed.rb -------------------------------------------------------------------------------- /lib/rubygems/source/local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/source/local.rb -------------------------------------------------------------------------------- /lib/rubygems/source/lock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/source/lock.rb -------------------------------------------------------------------------------- /lib/rubygems/source/specific_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/source/specific_file.rb -------------------------------------------------------------------------------- /lib/rubygems/source/vendor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/source/vendor.rb -------------------------------------------------------------------------------- /lib/rubygems/source_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/source_list.rb -------------------------------------------------------------------------------- /lib/rubygems/spec_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/spec_fetcher.rb -------------------------------------------------------------------------------- /lib/rubygems/specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/specification.rb -------------------------------------------------------------------------------- /lib/rubygems/specification_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/specification_policy.rb -------------------------------------------------------------------------------- /lib/rubygems/specification_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/specification_record.rb -------------------------------------------------------------------------------- /lib/rubygems/ssl_certs/.document: -------------------------------------------------------------------------------- 1 | # Ignore all files in this directory 2 | -------------------------------------------------------------------------------- /lib/rubygems/stub_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/stub_specification.rb -------------------------------------------------------------------------------- /lib/rubygems/target_rbconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/target_rbconfig.rb -------------------------------------------------------------------------------- /lib/rubygems/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/text.rb -------------------------------------------------------------------------------- /lib/rubygems/uninstaller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/uninstaller.rb -------------------------------------------------------------------------------- /lib/rubygems/update_suggestion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/update_suggestion.rb -------------------------------------------------------------------------------- /lib/rubygems/uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/uri.rb -------------------------------------------------------------------------------- /lib/rubygems/uri_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/uri_formatter.rb -------------------------------------------------------------------------------- /lib/rubygems/user_interaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/user_interaction.rb -------------------------------------------------------------------------------- /lib/rubygems/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/util.rb -------------------------------------------------------------------------------- /lib/rubygems/util/licenses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/util/licenses.rb -------------------------------------------------------------------------------- /lib/rubygems/util/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/util/list.rb -------------------------------------------------------------------------------- /lib/rubygems/validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/validator.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/.document -------------------------------------------------------------------------------- /lib/rubygems/vendor/molinillo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/molinillo/LICENSE -------------------------------------------------------------------------------- /lib/rubygems/vendor/net-http/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/net-http/COPYING -------------------------------------------------------------------------------- /lib/rubygems/vendor/net-http/lib/net/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/net-http/lib/net/http.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/net-protocol/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/net-protocol/LICENSE.txt -------------------------------------------------------------------------------- /lib/rubygems/vendor/optparse/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/optparse/COPYING -------------------------------------------------------------------------------- /lib/rubygems/vendor/optparse/lib/optionparser.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: false 2 | require_relative 'optparse' 3 | -------------------------------------------------------------------------------- /lib/rubygems/vendor/optparse/lib/optparse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/optparse/lib/optparse.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/resolv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/resolv/COPYING -------------------------------------------------------------------------------- /lib/rubygems/vendor/resolv/lib/resolv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/resolv/lib/resolv.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/securerandom/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/securerandom/COPYING -------------------------------------------------------------------------------- /lib/rubygems/vendor/timeout/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/timeout/COPYING -------------------------------------------------------------------------------- /lib/rubygems/vendor/timeout/lib/timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/timeout/lib/timeout.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/tsort/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/tsort/LICENSE.txt -------------------------------------------------------------------------------- /lib/rubygems/vendor/tsort/lib/tsort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/tsort/lib/tsort.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/COPYING -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/common.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/file.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/ftp.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/generic.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/http.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/https.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/https.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/ldap.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/ldaps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/ldaps.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/mailto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/mailto.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/version.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/ws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/ws.rb -------------------------------------------------------------------------------- /lib/rubygems/vendor/uri/lib/uri/wss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendor/uri/lib/uri/wss.rb -------------------------------------------------------------------------------- /lib/rubygems/vendored_molinillo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendored_molinillo.rb -------------------------------------------------------------------------------- /lib/rubygems/vendored_net_http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendored_net_http.rb -------------------------------------------------------------------------------- /lib/rubygems/vendored_optparse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendored_optparse.rb -------------------------------------------------------------------------------- /lib/rubygems/vendored_securerandom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendored_securerandom.rb -------------------------------------------------------------------------------- /lib/rubygems/vendored_timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendored_timeout.rb -------------------------------------------------------------------------------- /lib/rubygems/vendored_tsort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/vendored_tsort.rb -------------------------------------------------------------------------------- /lib/rubygems/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/version.rb -------------------------------------------------------------------------------- /lib/rubygems/version_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/version_option.rb -------------------------------------------------------------------------------- /lib/rubygems/win_platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/win_platform.rb -------------------------------------------------------------------------------- /lib/rubygems/yaml_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/lib/rubygems/yaml_serializer.rb -------------------------------------------------------------------------------- /rubygems-update.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/rubygems-update.gemspec -------------------------------------------------------------------------------- /setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/setup.rb -------------------------------------------------------------------------------- /test/rubygems/alternate_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/alternate_cert.pem -------------------------------------------------------------------------------- /test/rubygems/alternate_cert_32.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/alternate_cert_32.pem -------------------------------------------------------------------------------- /test/rubygems/alternate_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/alternate_key.pem -------------------------------------------------------------------------------- /test/rubygems/bad_rake.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | exit 1 4 | -------------------------------------------------------------------------------- /test/rubygems/bundler_test_gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/bundler_test_gem.rb -------------------------------------------------------------------------------- /test/rubygems/ca_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/ca_cert.pem -------------------------------------------------------------------------------- /test/rubygems/child_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/child_cert.pem -------------------------------------------------------------------------------- /test/rubygems/child_cert_32.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/child_cert_32.pem -------------------------------------------------------------------------------- /test/rubygems/child_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/child_key.pem -------------------------------------------------------------------------------- /test/rubygems/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/client.pem -------------------------------------------------------------------------------- /test/rubygems/data/excon-0.7.7.gemspec.rz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/data/excon-0.7.7.gemspec.rz -------------------------------------------------------------------------------- /test/rubygems/data/gem-private_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/data/gem-private_key.pem -------------------------------------------------------------------------------- /test/rubygems/data/gem-public_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/data/gem-public_cert.pem -------------------------------------------------------------------------------- /test/rubygems/data/pry-0.4.7.gemspec.rz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/data/pry-0.4.7.gemspec.rz -------------------------------------------------------------------------------- /test/rubygems/encrypted_private_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/encrypted_private_key.pem -------------------------------------------------------------------------------- /test/rubygems/expired_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/expired_cert.pem -------------------------------------------------------------------------------- /test/rubygems/fake_certlib/openssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/fake_certlib/openssl.rb -------------------------------------------------------------------------------- /test/rubygems/foo/discover.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | -------------------------------------------------------------------------------- /test/rubygems/future_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/future_cert.pem -------------------------------------------------------------------------------- /test/rubygems/future_cert_32.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/future_cert_32.pem -------------------------------------------------------------------------------- /test/rubygems/good_rake.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /test/rubygems/grandchild_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/grandchild_cert.pem -------------------------------------------------------------------------------- /test/rubygems/grandchild_cert_32.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/grandchild_cert_32.pem -------------------------------------------------------------------------------- /test/rubygems/grandchild_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/grandchild_key.pem -------------------------------------------------------------------------------- /test/rubygems/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/helper.rb -------------------------------------------------------------------------------- /test/rubygems/installer_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/installer_test_case.rb -------------------------------------------------------------------------------- /test/rubygems/invalid_client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/invalid_client.pem -------------------------------------------------------------------------------- /test/rubygems/invalid_issuer_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/invalid_issuer_cert.pem -------------------------------------------------------------------------------- /test/rubygems/invalid_issuer_cert_32.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/invalid_issuer_cert_32.pem -------------------------------------------------------------------------------- /test/rubygems/invalid_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/invalid_key.pem -------------------------------------------------------------------------------- /test/rubygems/invalid_signer_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/invalid_signer_cert.pem -------------------------------------------------------------------------------- /test/rubygems/invalid_signer_cert_32.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/invalid_signer_cert_32.pem -------------------------------------------------------------------------------- /test/rubygems/invalidchild_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/invalidchild_cert.pem -------------------------------------------------------------------------------- /test/rubygems/invalidchild_cert_32.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/invalidchild_cert_32.pem -------------------------------------------------------------------------------- /test/rubygems/invalidchild_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/invalidchild_key.pem -------------------------------------------------------------------------------- /test/rubygems/mock_gem_ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/mock_gem_ui.rb -------------------------------------------------------------------------------- /test/rubygems/multifactor_auth_utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/multifactor_auth_utilities.rb -------------------------------------------------------------------------------- /test/rubygems/package/tar_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/package/tar_test_case.rb -------------------------------------------------------------------------------- /test/rubygems/private3072_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/private3072_key.pem -------------------------------------------------------------------------------- /test/rubygems/private_ec_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/private_ec_key.pem -------------------------------------------------------------------------------- /test/rubygems/private_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/private_key.pem -------------------------------------------------------------------------------- /test/rubygems/public3072_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/public3072_cert.pem -------------------------------------------------------------------------------- /test/rubygems/public_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/public_cert.pem -------------------------------------------------------------------------------- /test/rubygems/public_cert_32.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/public_cert_32.pem -------------------------------------------------------------------------------- /test/rubygems/public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/public_key.pem -------------------------------------------------------------------------------- /test/rubygems/rubygems_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/rubygems_plugin.rb -------------------------------------------------------------------------------- /test/rubygems/sff/discover.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | -------------------------------------------------------------------------------- /test/rubygems/simple_gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/simple_gem.rb -------------------------------------------------------------------------------- /test/rubygems/ssl_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/ssl_cert.pem -------------------------------------------------------------------------------- /test/rubygems/ssl_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/ssl_key.pem -------------------------------------------------------------------------------- /test/rubygems/test_bundled_ca.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_bundled_ca.rb -------------------------------------------------------------------------------- /test/rubygems/test_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_config.rb -------------------------------------------------------------------------------- /test/rubygems/test_deprecate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_deprecate.rb -------------------------------------------------------------------------------- /test/rubygems/test_exit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_exit.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_available_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_available_set.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_ci_detector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_ci_detector.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_command.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_command_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_command_manager.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_commands_mirror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_commands_mirror.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_config_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_config_file.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_console_ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_console_ui.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_dependency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_dependency.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_dependency_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_dependency_list.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_doctor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_doctor.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_ext_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_ext_builder.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_ext_cargo_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_ext_cargo_builder.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_ext_cargo_builder/custom_name/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /test/rubygems/test_gem_ext_cmake_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_ext_cmake_builder.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_ext_rake_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_ext_rake_builder.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_gem_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_gem_runner.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_installer.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_name_tuple.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_name_tuple.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_package.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_package_old.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_package_old.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_package_tar_header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_package_tar_header.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_package_tar_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_package_tar_reader.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_package_tar_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_package_tar_writer.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_package_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_package_task.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_path_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_path_support.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_platform.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_rdoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_rdoc.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_remote_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_remote_fetcher.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_remote_fetcher_s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_remote_fetcher_s3.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_request.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_request_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_request_set.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_requirement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_requirement.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_resolver.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_resolver_api_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_resolver_api_set.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_resolver_best_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_resolver_best_set.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_resolver_conflict.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_resolver_conflict.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_resolver_git_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_resolver_git_set.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_resolver_index_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_resolver_index_set.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_resolver_lock_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_resolver_lock_set.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_safe_marshal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_safe_marshal.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_safe_yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_safe_yaml.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_security.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_security_policy.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_security_signer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_security_signer.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_security_trust_dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_security_trust_dir.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_silent_ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_silent_ui.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_source.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_source_git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_source_git.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_source_installed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_source_installed.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_source_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_source_list.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_source_local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_source_local.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_source_lock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_source_lock.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_source_vendor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_source_vendor.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_spec_fetcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_spec_fetcher.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_specification.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_stream_ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_stream_ui.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_stub_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_stub_specification.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_text.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_uninstaller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_uninstaller.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_update_suggestion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_update_suggestion.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_uri.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_uri_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_uri_formatter.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_util.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_validator.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_version.rb -------------------------------------------------------------------------------- /test/rubygems/test_gem_version_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_gem_version_option.rb -------------------------------------------------------------------------------- /test/rubygems/test_kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_kernel.rb -------------------------------------------------------------------------------- /test/rubygems/test_project_sanity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_project_sanity.rb -------------------------------------------------------------------------------- /test/rubygems/test_remote_fetch_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_remote_fetch_error.rb -------------------------------------------------------------------------------- /test/rubygems/test_require.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_require.rb -------------------------------------------------------------------------------- /test/rubygems/test_rubygems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_rubygems.rb -------------------------------------------------------------------------------- /test/rubygems/test_webauthn_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_webauthn_listener.rb -------------------------------------------------------------------------------- /test/rubygems/test_webauthn_poller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/test_webauthn_poller.rb -------------------------------------------------------------------------------- /test/rubygems/utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/utilities.rb -------------------------------------------------------------------------------- /test/rubygems/wrong_key_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/wrong_key_cert.pem -------------------------------------------------------------------------------- /test/rubygems/wrong_key_cert_32.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/rubygems/wrong_key_cert_32.pem -------------------------------------------------------------------------------- /test/test_changelog_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/test_changelog_generator.rb -------------------------------------------------------------------------------- /test/test_gemspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/test/test_gemspec.rb -------------------------------------------------------------------------------- /tool/automatiek/connection_pool-v2.4.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/automatiek/connection_pool-v2.4.1.patch -------------------------------------------------------------------------------- /tool/automatiek/molinillo-master.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/automatiek/molinillo-master.patch -------------------------------------------------------------------------------- /tool/automatiek/net-http-v0.7.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/automatiek/net-http-v0.7.0.patch -------------------------------------------------------------------------------- /tool/automatiek/optparse-v0.8.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/automatiek/optparse-v0.8.0.patch -------------------------------------------------------------------------------- /tool/automatiek/resolv-v0.6.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/automatiek/resolv-v0.6.3.patch -------------------------------------------------------------------------------- /tool/automatiek/thor-v1.4.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/automatiek/thor-v1.4.0.patch -------------------------------------------------------------------------------- /tool/automatiek/timeout-v0.4.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/automatiek/timeout-v0.4.3.patch -------------------------------------------------------------------------------- /tool/automatiek/vendor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/automatiek/vendor.rb -------------------------------------------------------------------------------- /tool/bundler/dev_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/dev_gems.rb -------------------------------------------------------------------------------- /tool/bundler/dev_gems.rb.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/dev_gems.rb.lock -------------------------------------------------------------------------------- /tool/bundler/lint_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/lint_gems.rb -------------------------------------------------------------------------------- /tool/bundler/lint_gems.rb.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/lint_gems.rb.lock -------------------------------------------------------------------------------- /tool/bundler/release_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/release_gems.rb -------------------------------------------------------------------------------- /tool/bundler/release_gems.rb.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/release_gems.rb.lock -------------------------------------------------------------------------------- /tool/bundler/rubocop_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/rubocop_gems.rb -------------------------------------------------------------------------------- /tool/bundler/rubocop_gems.rb.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/rubocop_gems.rb.lock -------------------------------------------------------------------------------- /tool/bundler/standard_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/standard_gems.rb -------------------------------------------------------------------------------- /tool/bundler/standard_gems.rb.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/standard_gems.rb.lock -------------------------------------------------------------------------------- /tool/bundler/test_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/test_gems.rb -------------------------------------------------------------------------------- /tool/bundler/test_gems.rb.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/test_gems.rb.lock -------------------------------------------------------------------------------- /tool/bundler/vendor_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/vendor_gems.rb -------------------------------------------------------------------------------- /tool/bundler/vendor_gems.rb.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/bundler/vendor_gems.rb.lock -------------------------------------------------------------------------------- /tool/changelog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/changelog.rb -------------------------------------------------------------------------------- /tool/cops/deprecations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/cops/deprecations.rb -------------------------------------------------------------------------------- /tool/create_certs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/create_certs.rb -------------------------------------------------------------------------------- /tool/create_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/create_certs.sh -------------------------------------------------------------------------------- /tool/create_encrypted_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/create_encrypted_key.rb -------------------------------------------------------------------------------- /tool/generate_spdx_license_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/generate_spdx_license_list.rb -------------------------------------------------------------------------------- /tool/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/release.rb -------------------------------------------------------------------------------- /tool/update_bundled_ca_certificates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/rubygems/HEAD/tool/update_bundled_ca_certificates.rb --------------------------------------------------------------------------------