├── .claude └── settings.json ├── .cursor └── hooks.json ├── .devcontainer ├── devcontainer.json └── on-create-command.sh ├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml ├── PULL_REQUEST_TEMPLATE.md ├── actionlint-matcher.json ├── actionlint.yaml ├── codecov.yml ├── codeql │ └── extensions │ │ └── homebrew-actions.yml ├── dependabot.yml ├── release.yml ├── workflows │ ├── actionlint.yml │ ├── autogenerated-files.yml │ ├── codeql-analysis.yml │ ├── command-not-found-db-update.yml │ ├── copilot-setup-steps.yml │ ├── docker.yml │ ├── docs.yml │ ├── doctor.yml │ ├── release.yml │ ├── sbom.yml │ ├── sorbet.yml │ ├── spdx.yml │ ├── sponsors-maintainers-man-completions.yml │ ├── stale-issues.yml │ ├── sync-default-branches.yml │ ├── tests.yml │ ├── vendor-gems.yml │ └── vendor-version.yml └── zizmor.yml ├── .gitignore ├── .shellcheckrc ├── .sublime └── homebrew.sublime-project ├── .vale.ini ├── .vscode ├── extensions.json ├── launch.json ├── mcp.json ├── ruby-lsp-activate.sh └── settings.json ├── AGENTS.md ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.txt ├── Library ├── .rubocop.yml ├── Homebrew │ ├── .bundle │ │ └── config │ ├── .rspec_parallel │ ├── .rubocop.yml │ ├── .ruby-version │ ├── .simplecov │ ├── .yardopts │ ├── Gemfile │ ├── Gemfile.lock │ ├── PATH.rb │ ├── README.md │ ├── abstract_command.rb │ ├── aliases │ │ ├── alias.rb │ │ └── aliases.rb │ ├── api.rb │ ├── api │ │ ├── analytics.rb │ │ ├── cask.rb │ │ ├── formula.rb │ │ ├── homebrew-1.pem │ │ ├── internal.rb │ │ ├── json_download.rb │ │ └── source_download.rb │ ├── api_hashable.rb │ ├── ast_constants.rb │ ├── attestation.rb │ ├── autobump_constants.rb │ ├── bottle.rb │ ├── bottle_specification.rb │ ├── brew.rb │ ├── brew.sh │ ├── brew_irbrc │ ├── build.rb │ ├── build_environment.rb │ ├── build_options.rb │ ├── bump_version_parser.rb │ ├── bundle.rb │ ├── bundle │ │ ├── adder.rb │ │ ├── brew_checker.rb │ │ ├── brew_service_checker.rb │ │ ├── brew_services.rb │ │ ├── brewfile.rb │ │ ├── cask_checker.rb │ │ ├── cask_dumper.rb │ │ ├── cask_installer.rb │ │ ├── checker.rb │ │ ├── commands │ │ │ ├── add.rb │ │ │ ├── check.rb │ │ │ ├── cleanup.rb │ │ │ ├── dump.rb │ │ │ ├── exec.rb │ │ │ ├── install.rb │ │ │ ├── list.rb │ │ │ └── remove.rb │ │ ├── dsl.rb │ │ ├── dumper.rb │ │ ├── flatpak_checker.rb │ │ ├── flatpak_dumper.rb │ │ ├── flatpak_installer.rb │ │ ├── formula_dumper.rb │ │ ├── formula_installer.rb │ │ ├── go_checker.rb │ │ ├── go_dumper.rb │ │ ├── go_installer.rb │ │ ├── installer.rb │ │ ├── lister.rb │ │ ├── mac_app_store_checker.rb │ │ ├── mac_app_store_dumper.rb │ │ ├── mac_app_store_installer.rb │ │ ├── remover.rb │ │ ├── skipper.rb │ │ ├── tap_checker.rb │ │ ├── tap_dumper.rb │ │ ├── tap_installer.rb │ │ ├── vscode_extension_checker.rb │ │ ├── vscode_extension_dumper.rb │ │ └── vscode_extension_installer.rb │ ├── bundle_version.rb │ ├── cachable.rb │ ├── cache_store.rb │ ├── cask.rb │ ├── cask │ │ ├── artifact.rb │ │ ├── artifact │ │ │ ├── abstract_artifact.rb │ │ │ ├── abstract_flight_block.rb │ │ │ ├── abstract_uninstall.rb │ │ │ ├── app.rb │ │ │ ├── artifact.rb │ │ │ ├── audio_unit_plugin.rb │ │ │ ├── bashcompletion.rb │ │ │ ├── binary.rb │ │ │ ├── colorpicker.rb │ │ │ ├── dictionary.rb │ │ │ ├── fishcompletion.rb │ │ │ ├── font.rb │ │ │ ├── input_method.rb │ │ │ ├── installer.rb │ │ │ ├── internet_plugin.rb │ │ │ ├── keyboard_layout.rb │ │ │ ├── manpage.rb │ │ │ ├── mdimporter.rb │ │ │ ├── moved.rb │ │ │ ├── pkg.rb │ │ │ ├── postflight_block.rb │ │ │ ├── preflight_block.rb │ │ │ ├── prefpane.rb │ │ │ ├── qlplugin.rb │ │ │ ├── relocated.rb │ │ │ ├── screen_saver.rb │ │ │ ├── service.rb │ │ │ ├── shellcompletion.rb │ │ │ ├── stage_only.rb │ │ │ ├── suite.rb │ │ │ ├── symlinked.rb │ │ │ ├── uninstall.rb │ │ │ ├── vst3_plugin.rb │ │ │ ├── vst_plugin.rb │ │ │ ├── zap.rb │ │ │ └── zshcompletion.rb │ │ ├── artifact_set.rb │ │ ├── audit.rb │ │ ├── auditor.rb │ │ ├── cache.rb │ │ ├── cask.rb │ │ ├── cask_loader.rb │ │ ├── caskroom.rb │ │ ├── config.rb │ │ ├── denylist.rb │ │ ├── download.rb │ │ ├── dsl.rb │ │ ├── dsl │ │ │ ├── base.rb │ │ │ ├── caveats.rb │ │ │ ├── caveats.rbi │ │ │ ├── conflicts_with.rb │ │ │ ├── container.rb │ │ │ ├── depends_on.rb │ │ │ ├── depends_on.rbi │ │ │ ├── postflight.rb │ │ │ ├── preflight.rb │ │ │ ├── rename.rb │ │ │ ├── uninstall_postflight.rb │ │ │ ├── uninstall_preflight.rb │ │ │ └── version.rb │ │ ├── exceptions.rb │ │ ├── info.rb │ │ ├── installer.rb │ │ ├── list.rb │ │ ├── macos.rb │ │ ├── metadata.rb │ │ ├── migrator.rb │ │ ├── pkg.rb │ │ ├── quarantine.rb │ │ ├── reinstall.rb │ │ ├── staged.rb │ │ ├── tab.rb │ │ ├── uninstall.rb │ │ ├── upgrade.rb │ │ ├── url.rb │ │ ├── utils.rb │ │ └── utils │ │ │ ├── copy-xattrs.swift │ │ │ ├── quarantine.swift │ │ │ ├── rmdir.sh │ │ │ └── trash.swift │ ├── cask_dependent.rb │ ├── caveats.rb │ ├── checksum.rb │ ├── cleaner.rb │ ├── cleanup.rb │ ├── cli │ │ ├── args.rb │ │ ├── args.rbi │ │ ├── error.rb │ │ ├── named_args.rb │ │ └── parser.rb │ ├── cmake │ │ └── trap_fetchcontent_provider.cmake │ ├── cmd │ │ ├── --cache.rb │ │ ├── --caskroom.rb │ │ ├── --cellar.rb │ │ ├── --env.rb │ │ ├── --prefix.rb │ │ ├── --repository.rb │ │ ├── --repository.sh │ │ ├── --taps.rb │ │ ├── --taps.sh │ │ ├── --version.rb │ │ ├── --version.sh │ │ ├── alias.rb │ │ ├── analytics.rb │ │ ├── autoremove.rb │ │ ├── bundle.rb │ │ ├── casks.rb │ │ ├── casks.sh │ │ ├── cleanup.rb │ │ ├── command-not-found-init.rb │ │ ├── command.rb │ │ ├── commands.rb │ │ ├── completions.rb │ │ ├── config.rb │ │ ├── deps.rb │ │ ├── desc.rb │ │ ├── developer.rb │ │ ├── docs.rb │ │ ├── doctor.rb │ │ ├── fetch.rb │ │ ├── formulae.rb │ │ ├── formulae.sh │ │ ├── gist-logs.rb │ │ ├── help.rb │ │ ├── home.rb │ │ ├── info.rb │ │ ├── install.rb │ │ ├── leaves.rb │ │ ├── link.rb │ │ ├── list.rb │ │ ├── log.rb │ │ ├── mcp-server.rb │ │ ├── mcp-server.sh │ │ ├── migrate.rb │ │ ├── missing.rb │ │ ├── nodenv-sync.rb │ │ ├── options.rb │ │ ├── outdated.rb │ │ ├── pin.rb │ │ ├── postinstall.rb │ │ ├── pyenv-sync.rb │ │ ├── rbenv-sync.rb │ │ ├── readall.rb │ │ ├── reinstall.rb │ │ ├── search.rb │ │ ├── services.rb │ │ ├── setup-ruby.rb │ │ ├── setup-ruby.sh │ │ ├── shellenv.rb │ │ ├── shellenv.sh │ │ ├── tab.rb │ │ ├── tap-info.rb │ │ ├── tap.rb │ │ ├── unalias.rb │ │ ├── uninstall.rb │ │ ├── unlink.rb │ │ ├── unpin.rb │ │ ├── untap.rb │ │ ├── update-if-needed.rb │ │ ├── update-if-needed.sh │ │ ├── update-report.rb │ │ ├── update-reset.rb │ │ ├── update-reset.sh │ │ ├── update.rb │ │ ├── update.sh │ │ ├── upgrade.rb │ │ ├── uses.rb │ │ ├── vendor-install.rb │ │ ├── vendor-install.sh │ │ ├── which-formula.rb │ │ └── which-formula.sh │ ├── command-not-found │ │ ├── LICENSE │ │ ├── handler.fish │ │ └── handler.sh │ ├── command_path.sh │ ├── commands.rb │ ├── compilers.rb │ ├── completions.rb │ ├── completions │ │ ├── bash.erb │ │ ├── fish.erb │ │ └── zsh.erb │ ├── context.rb │ ├── cxxstdlib.rb │ ├── data │ │ ├── schemas │ │ │ └── sbom.json │ │ └── spdx │ │ │ ├── spdx_exceptions.json │ │ │ └── spdx_licenses.json │ ├── debrew.rb │ ├── debrew │ │ └── irb.rb │ ├── dependable.rb │ ├── dependencies.rb │ ├── dependencies.rbi │ ├── dependencies_helpers.rb │ ├── dependencies_helpers.rbi │ ├── dependency.rb │ ├── dependency_collector.rb │ ├── dependents_message.rb │ ├── deprecate_disable.rb │ ├── description_cache_store.rb │ ├── descriptions.rb │ ├── dev-cmd │ │ ├── audit.rb │ │ ├── bottle.rb │ │ ├── bump-cask-pr.rb │ │ ├── bump-formula-pr.rb │ │ ├── bump-revision.rb │ │ ├── bump-unversioned-casks.rb │ │ ├── bump.rb │ │ ├── cat.rb │ │ ├── contributions.rb │ │ ├── create.rb │ │ ├── debugger.rb │ │ ├── determine-test-runners.rb │ │ ├── dispatch-build-bottle.rb │ │ ├── edit.rb │ │ ├── extract.rb │ │ ├── formula-analytics.rb │ │ ├── formula.rb │ │ ├── generate-analytics-api.rb │ │ ├── generate-cask-api.rb │ │ ├── generate-cask-ci-matrix.rb │ │ ├── generate-formula-api.rb │ │ ├── generate-man-completions.rb │ │ ├── install-bundler-gems.rb │ │ ├── irb.rb │ │ ├── lgtm.rb │ │ ├── linkage.rb │ │ ├── livecheck.rb │ │ ├── pr-automerge.rb │ │ ├── pr-publish.rb │ │ ├── pr-pull.rb │ │ ├── pr-upload.rb │ │ ├── prof.rb │ │ ├── release.rb │ │ ├── rubocop.rb │ │ ├── rubocop.sh │ │ ├── ruby.rb │ │ ├── rubydoc.rb │ │ ├── sh.rb │ │ ├── style.rb │ │ ├── tap-new.rb │ │ ├── test-bot.rb │ │ ├── test.rb │ │ ├── tests.rb │ │ ├── typecheck.rb │ │ ├── unbottled.rb │ │ ├── unpack.rb │ │ ├── update-license-data.rb │ │ ├── update-maintainers.rb │ │ ├── update-perl-resources.rb │ │ ├── update-python-resources.rb │ │ ├── update-sponsors.rb │ │ ├── update-test.rb │ │ ├── vendor-gems.rb │ │ ├── verify.rb │ │ └── which-update.rb │ ├── development_tools.rb │ ├── diagnostic.rb │ ├── download_queue.rb │ ├── download_strategy.rb │ ├── download_strategy.rbi │ ├── downloadable.rb │ ├── env_config.rb │ ├── exceptions.rb │ ├── executables_db.rb │ ├── extend │ │ ├── ENV.rb │ │ ├── ENV.rbi │ │ ├── ENV │ │ │ ├── shared.rb │ │ │ ├── shared.rbi │ │ │ ├── std.rb │ │ │ └── super.rb │ │ ├── array.rb │ │ ├── array.rbi │ │ ├── blank.rb │ │ ├── enumerable.rb │ │ ├── enumerable.rbi │ │ ├── file │ │ │ └── atomic.rb │ │ ├── hash │ │ │ ├── deep_merge.rb │ │ │ ├── deep_merge.rbi │ │ │ ├── deep_transform_values.rb │ │ │ ├── deep_transform_values.rbi │ │ │ ├── keys.rb │ │ │ └── keys.rbi │ │ ├── kernel.rb │ │ ├── module.rb │ │ ├── object │ │ │ ├── deep_dup.rb │ │ │ └── duplicable.rb │ │ ├── optparse.rb │ │ ├── os │ │ │ ├── bottle_specification.rb │ │ │ ├── bottles.rb │ │ │ ├── bundle │ │ │ │ ├── bundle.rb │ │ │ │ ├── commands │ │ │ │ │ └── cleanup.rb │ │ │ │ └── skipper.rb │ │ │ ├── cask │ │ │ │ ├── artifact │ │ │ │ │ ├── abstract_uninstall.rb │ │ │ │ │ ├── moved.rb │ │ │ │ │ ├── relocated.rb │ │ │ │ │ └── symlinked.rb │ │ │ │ ├── caskroom.rb │ │ │ │ ├── config.rb │ │ │ │ ├── dsl.rb │ │ │ │ ├── installer.rb │ │ │ │ └── quarantine.rb │ │ │ ├── cleaner.rb │ │ │ ├── cleanup.rb │ │ │ ├── cmd │ │ │ │ └── update-report.rb │ │ │ ├── compilers.rb │ │ │ ├── dependency_collector.rb │ │ │ ├── dev-cmd │ │ │ │ ├── bottle.rb │ │ │ │ ├── tests.rb │ │ │ │ └── update-test.rb │ │ │ ├── development_tools.rb │ │ │ ├── diagnostic.rb │ │ │ ├── extend │ │ │ │ └── ENV │ │ │ │ │ ├── shared.rb │ │ │ │ │ ├── std.rb │ │ │ │ │ └── super.rb │ │ │ ├── formula.rb │ │ │ ├── formula_cellar_checks.rb │ │ │ ├── formula_installer.rb │ │ │ ├── hardware.rb │ │ │ ├── install.rb │ │ │ ├── keg.rb │ │ │ ├── keg_only_reason.rb │ │ │ ├── keg_relocate.rb │ │ │ ├── language │ │ │ │ └── java.rb │ │ │ ├── linkage_checker.rb │ │ │ ├── linux │ │ │ │ ├── bottle_specification.rb │ │ │ │ ├── bundle │ │ │ │ │ ├── bundle.rb │ │ │ │ │ └── skipper.rb │ │ │ │ ├── cask │ │ │ │ │ ├── artifact │ │ │ │ │ │ └── relocated.rb │ │ │ │ │ ├── caskroom.rb │ │ │ │ │ ├── config.rb │ │ │ │ │ ├── installer.rb │ │ │ │ │ └── quarantine.rb │ │ │ │ ├── cleaner.rb │ │ │ │ ├── cleanup.rb │ │ │ │ ├── cmd │ │ │ │ │ └── update-report.rb │ │ │ │ ├── compilers.rb │ │ │ │ ├── dependency_collector.rb │ │ │ │ ├── dev-cmd │ │ │ │ │ ├── bottle.rb │ │ │ │ │ ├── tests.rb │ │ │ │ │ └── update-test.rb │ │ │ │ ├── development_tools.rb │ │ │ │ ├── diagnostic.rb │ │ │ │ ├── extend │ │ │ │ │ ├── ENV │ │ │ │ │ │ ├── shared.rb │ │ │ │ │ │ ├── std.rb │ │ │ │ │ │ └── super.rb │ │ │ │ │ └── pathname.rb │ │ │ │ ├── formula.rb │ │ │ │ ├── formula_cellar_checks.rb │ │ │ │ ├── formula_installer.rb │ │ │ │ ├── hardware │ │ │ │ │ └── cpu.rb │ │ │ │ ├── install.rb │ │ │ │ ├── keg.rb │ │ │ │ ├── keg_relocate.rb │ │ │ │ ├── linkage_checker.rb │ │ │ │ ├── requirements │ │ │ │ │ └── xcode_requirement.rb │ │ │ │ ├── simulate_system.rb │ │ │ │ └── system_config.rb │ │ │ ├── mac │ │ │ │ ├── bundle │ │ │ │ │ ├── bundle.rb │ │ │ │ │ └── skipper.rb │ │ │ │ ├── cask │ │ │ │ │ ├── artifact │ │ │ │ │ │ ├── abstract_uninstall.rb │ │ │ │ │ │ ├── moved.rb │ │ │ │ │ │ └── symlinked.rb │ │ │ │ │ └── dsl.rb │ │ │ │ ├── cleaner.rb │ │ │ │ ├── cleanup.rb │ │ │ │ ├── dependency_collector.rb │ │ │ │ ├── dev-cmd │ │ │ │ │ ├── bottle.rb │ │ │ │ │ └── tests.rb │ │ │ │ ├── development_tools.rb │ │ │ │ ├── diagnostic.rb │ │ │ │ ├── extend │ │ │ │ │ ├── ENV │ │ │ │ │ │ ├── shared.rb │ │ │ │ │ │ ├── std.rb │ │ │ │ │ │ └── super.rb │ │ │ │ │ └── pathname.rb │ │ │ │ ├── formula.rb │ │ │ │ ├── formula_cellar_checks.rb │ │ │ │ ├── formula_installer.rb │ │ │ │ ├── hardware.rb │ │ │ │ ├── hardware │ │ │ │ │ └── cpu.rb │ │ │ │ ├── keg.rb │ │ │ │ ├── keg_only_reason.rb │ │ │ │ ├── keg_relocate.rb │ │ │ │ ├── language │ │ │ │ │ └── java.rb │ │ │ │ ├── linkage_checker.rb │ │ │ │ ├── missing_formula.rb │ │ │ │ ├── pkgconf.rb │ │ │ │ ├── readall.rb │ │ │ │ ├── reinstall.rb │ │ │ │ ├── sandbox.rb │ │ │ │ ├── simulate_system.rb │ │ │ │ ├── system_config.rb │ │ │ │ ├── tap.rb │ │ │ │ ├── unpack_strategy │ │ │ │ │ └── zip.rb │ │ │ │ └── utils │ │ │ │ │ ├── bottles.rb │ │ │ │ │ └── socket.rb │ │ │ ├── missing_formula.rb │ │ │ ├── pathname.rb │ │ │ ├── readall.rb │ │ │ ├── reinstall.rb │ │ │ ├── requirements │ │ │ │ └── xcode_requirement.rb │ │ │ ├── sandbox.rb │ │ │ ├── simulate_system.rb │ │ │ ├── system_config.rb │ │ │ ├── tap.rb │ │ │ ├── unpack_strategy │ │ │ │ └── zip.rb │ │ │ └── utils │ │ │ │ └── socket.rb │ │ ├── pathname.rb │ │ ├── pathname │ │ │ ├── disk_usage_extension.rb │ │ │ ├── observer_pathname_extension.rb │ │ │ └── write_mkpath_extension.rb │ │ └── string.rb │ ├── fetch.rb │ ├── formula-analytics │ │ ├── .python-version │ │ ├── pycall-setup.rb │ │ ├── pycall-setup.rbi │ │ ├── requirements.in │ │ ├── requirements.txt │ │ └── transform_analytics_to_counts.json │ ├── formula.rb │ ├── formula_assertions.rb │ ├── formula_auditor.rb │ ├── formula_cellar_checks.rb │ ├── formula_creator.rb │ ├── formula_free_port.rb │ ├── formula_info.rb │ ├── formula_installer.rb │ ├── formula_name_cask_token_auditor.rb │ ├── formula_path.sh │ ├── formula_pin.rb │ ├── formula_stub.rb │ ├── formula_versions.rb │ ├── formulary.rb │ ├── git_repository.rb │ ├── github_packages.rb │ ├── github_releases.rb │ ├── github_runner.rb │ ├── github_runner_matrix.rb │ ├── global.rb │ ├── hardware.rb │ ├── head_software_spec.rb │ ├── help.rb │ ├── help.sh │ ├── ignorable.rb │ ├── ignorable.rbi │ ├── install.rb │ ├── install_renamed.rb │ ├── installed_dependents.rb │ ├── items.sh │ ├── keg.rb │ ├── keg.rbi │ ├── keg_only_reason.rb │ ├── keg_relocate.rb │ ├── language │ │ ├── java.rb │ │ ├── node.rb │ │ ├── perl.rb │ │ ├── php.rb │ │ └── python.rb │ ├── lazy_object.rb │ ├── linkage_cache_store.rb │ ├── linkage_checker.rb │ ├── linux_runner_spec.rb │ ├── linuxbrew-core-migration.rb │ ├── list.sh │ ├── livecheck.rb │ ├── livecheck │ │ ├── constants.rb │ │ ├── error.rb │ │ ├── livecheck.rb │ │ ├── livecheck_version.rb │ │ ├── options.rb │ │ ├── skip_conditions.rb │ │ ├── strategic.rb │ │ ├── strategy.rb │ │ └── strategy │ │ │ ├── apache.rb │ │ │ ├── bitbucket.rb │ │ │ ├── cpan.rb │ │ │ ├── crate.rb │ │ │ ├── electron_builder.rb │ │ │ ├── extract_plist.rb │ │ │ ├── git.rb │ │ │ ├── github_latest.rb │ │ │ ├── github_releases.rb │ │ │ ├── gnome.rb │ │ │ ├── gnu.rb │ │ │ ├── hackage.rb │ │ │ ├── header_match.rb │ │ │ ├── json.rb │ │ │ ├── launchpad.rb │ │ │ ├── npm.rb │ │ │ ├── page_match.rb │ │ │ ├── pypi.rb │ │ │ ├── sourceforge.rb │ │ │ ├── sparkle.rb │ │ │ ├── xml.rb │ │ │ ├── xorg.rb │ │ │ └── yaml.rb │ ├── locale.rb │ ├── lock_file.rb │ ├── macos_runner_spec.rb │ ├── macos_version.rb │ ├── manpages.rb │ ├── manpages │ │ ├── brew.1.md.erb │ │ ├── converter │ │ │ ├── kramdown.rb │ │ │ └── roff.rb │ │ └── parser │ │ │ └── ronn.rb │ ├── mcp_server.rb │ ├── messages.rb │ ├── metafiles.rb │ ├── migrator.rb │ ├── missing_formula.rb │ ├── mktemp.rb │ ├── official_taps.rb │ ├── on_system.rb │ ├── on_system.rbi │ ├── options.rb │ ├── options.rbi │ ├── os.rb │ ├── os │ │ ├── linux.rb │ │ ├── linux │ │ │ ├── elf.rb │ │ │ ├── glibc.rb │ │ │ ├── kernel.rb │ │ │ ├── ld.rb │ │ │ └── libstdcxx.rb │ │ ├── mac.rb │ │ └── mac │ │ │ ├── mach.rb │ │ │ ├── pkgconfig │ │ │ ├── 11 │ │ │ │ ├── bzip2.pc │ │ │ │ ├── expat.pc │ │ │ │ ├── libcurl.pc │ │ │ │ ├── libedit.pc │ │ │ │ ├── libexslt.pc │ │ │ │ ├── libffi.pc │ │ │ │ ├── libxml-2.0.pc │ │ │ │ ├── libxslt.pc │ │ │ │ ├── ncurses.pc │ │ │ │ ├── ncursesw.pc │ │ │ │ ├── sqlite3.pc │ │ │ │ ├── uuid.pc │ │ │ │ └── zlib.pc │ │ │ ├── 12 │ │ │ │ ├── bzip2.pc │ │ │ │ ├── expat.pc │ │ │ │ ├── libcurl.pc │ │ │ │ ├── libedit.pc │ │ │ │ ├── libexslt.pc │ │ │ │ ├── libffi.pc │ │ │ │ ├── libxml-2.0.pc │ │ │ │ ├── libxslt.pc │ │ │ │ ├── ncurses.pc │ │ │ │ ├── ncursesw.pc │ │ │ │ ├── sqlite3.pc │ │ │ │ ├── uuid.pc │ │ │ │ └── zlib.pc │ │ │ ├── 13 │ │ │ │ ├── bzip2.pc │ │ │ │ ├── expat.pc │ │ │ │ ├── libcurl.pc │ │ │ │ ├── libedit.pc │ │ │ │ ├── libexslt.pc │ │ │ │ ├── libffi.pc │ │ │ │ ├── libxml-2.0.pc │ │ │ │ ├── libxslt.pc │ │ │ │ ├── ncurses.pc │ │ │ │ ├── ncursesw.pc │ │ │ │ ├── sqlite3.pc │ │ │ │ ├── uuid.pc │ │ │ │ └── zlib.pc │ │ │ ├── 14 │ │ │ │ ├── bzip2.pc │ │ │ │ ├── expat.pc │ │ │ │ ├── libcurl.pc │ │ │ │ ├── libedit.pc │ │ │ │ ├── libexslt.pc │ │ │ │ ├── libffi.pc │ │ │ │ ├── libxml-2.0.pc │ │ │ │ ├── libxslt.pc │ │ │ │ ├── ncurses.pc │ │ │ │ ├── ncursesw.pc │ │ │ │ ├── sqlite3.pc │ │ │ │ ├── uuid.pc │ │ │ │ └── zlib.pc │ │ │ ├── 15 │ │ │ │ ├── bzip2.pc │ │ │ │ ├── expat.pc │ │ │ │ ├── libcurl.pc │ │ │ │ ├── libedit.pc │ │ │ │ ├── libexslt.pc │ │ │ │ ├── libffi.pc │ │ │ │ ├── libxml-2.0.pc │ │ │ │ ├── libxslt.pc │ │ │ │ ├── ncurses.pc │ │ │ │ ├── ncursesw.pc │ │ │ │ ├── sqlite3.pc │ │ │ │ ├── uuid.pc │ │ │ │ └── zlib.pc │ │ │ ├── 26 │ │ │ │ ├── bzip2.pc │ │ │ │ ├── expat.pc │ │ │ │ ├── libcurl.pc │ │ │ │ ├── libedit.pc │ │ │ │ ├── libexslt.pc │ │ │ │ ├── libffi.pc │ │ │ │ ├── libxml-2.0.pc │ │ │ │ ├── libxslt.pc │ │ │ │ ├── ncurses.pc │ │ │ │ ├── ncursesw.pc │ │ │ │ ├── sqlite3.pc │ │ │ │ ├── uuid.pc │ │ │ │ └── zlib.pc │ │ │ ├── 10.15 │ │ │ │ ├── bzip2.pc │ │ │ │ ├── expat.pc │ │ │ │ ├── libcurl.pc │ │ │ │ ├── libedit.pc │ │ │ │ ├── libexslt.pc │ │ │ │ ├── libffi.pc │ │ │ │ ├── libxml-2.0.pc │ │ │ │ ├── libxslt.pc │ │ │ │ ├── ncurses.pc │ │ │ │ ├── ncursesw.pc │ │ │ │ ├── sqlite3.pc │ │ │ │ ├── uuid.pc │ │ │ │ └── zlib.pc │ │ │ ├── 11.0 │ │ │ └── 11.1 │ │ │ ├── sdk.rb │ │ │ └── xcode.rb │ ├── patch.rb │ ├── pkg_version.rb │ ├── pkg_version.rbi │ ├── postinstall.rb │ ├── pour_bottle_check.rb │ ├── pypi_packages.rb │ ├── readall.rb │ ├── readline_nonblock.rb │ ├── reinstall.rb │ ├── requirement.rb │ ├── requirements.rb │ ├── requirements │ │ ├── arch_requirement.rb │ │ ├── codesign_requirement.rb │ │ ├── linux_requirement.rb │ │ ├── macos_requirement.rb │ │ └── xcode_requirement.rb │ ├── resource.rb │ ├── resource_auditor.rb │ ├── retryable_download.rb │ ├── rubocops.rb │ ├── rubocops │ │ ├── all.rb │ │ ├── blank.rb │ │ ├── bottle.rb │ │ ├── cask │ │ │ ├── array_alphabetization.rb │ │ │ ├── ast │ │ │ │ ├── cask_block.rb │ │ │ │ ├── cask_header.rb │ │ │ │ └── stanza.rb │ │ │ ├── constants │ │ │ │ └── stanza.rb │ │ │ ├── deprecate_disable_unsigned_reason.rb │ │ │ ├── desc.rb │ │ │ ├── discontinued.rb │ │ │ ├── discontinued.rbi │ │ │ ├── extend │ │ │ │ ├── node.rb │ │ │ │ └── node.rbi │ │ │ ├── homepage_url_styling.rb │ │ │ ├── mixin │ │ │ │ ├── cask_help.rb │ │ │ │ ├── cask_help.rbi │ │ │ │ ├── on_desc_stanza.rb │ │ │ │ ├── on_desc_stanza.rbi │ │ │ │ ├── on_homepage_stanza.rb │ │ │ │ ├── on_homepage_stanza.rbi │ │ │ │ ├── on_url_stanza.rb │ │ │ │ └── on_url_stanza.rbi │ │ │ ├── no_autobump.rb │ │ │ ├── no_autobump.rbi │ │ │ ├── no_overrides.rb │ │ │ ├── on_system_conditionals.rb │ │ │ ├── on_system_conditionals.rbi │ │ │ ├── shared_filelist_glob.rb │ │ │ ├── stanza_grouping.rb │ │ │ ├── stanza_order.rb │ │ │ ├── uninstall_methods_order.rb │ │ │ ├── url.rb │ │ │ ├── url_legacy_comma_separators.rb │ │ │ └── variables.rb │ │ ├── caveats.rb │ │ ├── checksum.rb │ │ ├── class.rb │ │ ├── compact_blank.rb │ │ ├── components_order.rb │ │ ├── components_redundancy.rb │ │ ├── conflicts.rb │ │ ├── dependency_order.rb │ │ ├── deprecate_disable.rb │ │ ├── desc.rb │ │ ├── disable_comment.rb │ │ ├── extend │ │ │ ├── formula_cop.rb │ │ │ └── mutable_constant_exclude_unfreezable.rb │ │ ├── files.rb │ │ ├── homepage.rb │ │ ├── install_bundler_gems.rb │ │ ├── io_read.rb │ │ ├── keg_only.rb │ │ ├── lines.rb │ │ ├── livecheck.rb │ │ ├── move_to_extend_os.rb │ │ ├── negate_include.rb │ │ ├── no_autobump.rb │ │ ├── no_fileutils_rmrf.rb │ │ ├── options.rb │ │ ├── patches.rb │ │ ├── presence.rb │ │ ├── present.rb │ │ ├── resource_requires_dependencies.rb │ │ ├── rubocop-cask.rb │ │ ├── safe_navigation_with_blank.rb │ │ ├── service.rb │ │ ├── shared │ │ │ ├── desc_helper.rb │ │ │ ├── desc_helper.rbi │ │ │ ├── helper_functions.rb │ │ │ ├── helper_functions.rbi │ │ │ ├── homepage_helper.rb │ │ │ ├── no_autobump_helper.rb │ │ │ ├── on_system_conditionals_helper.rb │ │ │ └── url_helper.rb │ │ ├── shell_command_stub.rb │ │ ├── shell_commands.rb │ │ ├── text.rb │ │ ├── urls.rb │ │ ├── uses_from_macos.rb │ │ ├── version.rb │ │ └── zero_zero_zero_zero.rb │ ├── sandbox.rb │ ├── sbom.rb │ ├── search.rb │ ├── service.rb │ ├── services │ │ ├── cli.rb │ │ ├── commands │ │ │ ├── cleanup.rb │ │ │ ├── info.rb │ │ │ ├── kill.rb │ │ │ ├── list.rb │ │ │ ├── restart.rb │ │ │ ├── run.rb │ │ │ ├── start.rb │ │ │ └── stop.rb │ │ ├── formula_wrapper.rb │ │ ├── formulae.rb │ │ ├── system.rb │ │ └── system │ │ │ └── systemctl.rb │ ├── settings.rb │ ├── shell_command.rb │ ├── shims │ │ ├── gems │ │ │ ├── rdbg │ │ │ └── rubocop │ │ ├── linux │ │ │ └── super │ │ │ │ ├── c++ │ │ │ │ ├── c89 │ │ │ │ ├── c99 │ │ │ │ ├── cc │ │ │ │ ├── clang │ │ │ │ ├── clang++ │ │ │ │ ├── cpp │ │ │ │ ├── curl │ │ │ │ ├── g++ │ │ │ │ ├── g++-10 │ │ │ │ ├── g++-11 │ │ │ │ ├── g++-12 │ │ │ │ ├── g++-13 │ │ │ │ ├── g++-14 │ │ │ │ ├── g++-15 │ │ │ │ ├── g++-4.2 │ │ │ │ ├── g++-4.9 │ │ │ │ ├── g++-5 │ │ │ │ ├── g++-6 │ │ │ │ ├── g++-7 │ │ │ │ ├── g++-8 │ │ │ │ ├── g++-9 │ │ │ │ ├── gcc │ │ │ │ ├── gcc-10 │ │ │ │ ├── gcc-11 │ │ │ │ ├── gcc-12 │ │ │ │ ├── gcc-13 │ │ │ │ ├── gcc-14 │ │ │ │ ├── gcc-15 │ │ │ │ ├── gcc-7 │ │ │ │ ├── gcc-8 │ │ │ │ ├── gcc-9 │ │ │ │ ├── git │ │ │ │ ├── gmake │ │ │ │ ├── gnumake │ │ │ │ ├── gold │ │ │ │ ├── ld │ │ │ │ ├── ld.gold │ │ │ │ ├── llvm_clang │ │ │ │ ├── llvm_clang++ │ │ │ │ ├── make │ │ │ │ ├── ninja │ │ │ │ ├── svn │ │ │ │ ├── swift │ │ │ │ ├── swiftc │ │ │ │ └── x86_64-linux-gnu-gcc │ │ ├── mac │ │ │ ├── shared │ │ │ │ └── include │ │ │ │ │ └── llvm │ │ │ │ │ └── __config_site │ │ │ └── super │ │ │ │ ├── ant │ │ │ │ ├── apr-1-config │ │ │ │ ├── bsdmake │ │ │ │ ├── c++ │ │ │ │ ├── c89 │ │ │ │ ├── c99 │ │ │ │ ├── cc │ │ │ │ ├── clang │ │ │ │ ├── clang++ │ │ │ │ ├── cpp │ │ │ │ ├── curl │ │ │ │ ├── g++ │ │ │ │ ├── g++-10 │ │ │ │ ├── g++-11 │ │ │ │ ├── g++-12 │ │ │ │ ├── g++-13 │ │ │ │ ├── g++-14 │ │ │ │ ├── g++-15 │ │ │ │ ├── g++-4.2 │ │ │ │ ├── g++-4.9 │ │ │ │ ├── g++-5 │ │ │ │ ├── g++-6 │ │ │ │ ├── g++-7 │ │ │ │ ├── g++-8 │ │ │ │ ├── g++-9 │ │ │ │ ├── gcc │ │ │ │ ├── gcc-10 │ │ │ │ ├── gcc-11 │ │ │ │ ├── gcc-12 │ │ │ │ ├── gcc-13 │ │ │ │ ├── gcc-14 │ │ │ │ ├── gcc-15 │ │ │ │ ├── gcc-7 │ │ │ │ ├── gcc-8 │ │ │ │ ├── gcc-9 │ │ │ │ ├── gem │ │ │ │ ├── git │ │ │ │ ├── gmake │ │ │ │ ├── gnumake │ │ │ │ ├── ld │ │ │ │ ├── llvm_clang │ │ │ │ ├── llvm_clang++ │ │ │ │ ├── make │ │ │ │ ├── mig │ │ │ │ ├── ninja │ │ │ │ ├── pkg-config │ │ │ │ ├── pkgconf │ │ │ │ ├── rake │ │ │ │ ├── ruby │ │ │ │ ├── svn │ │ │ │ ├── swift │ │ │ │ ├── swiftc │ │ │ │ └── xcrun │ │ ├── scm │ │ ├── shared │ │ │ ├── curl │ │ │ ├── git │ │ │ ├── rustc_wrapper │ │ │ └── svn │ │ ├── super │ │ │ ├── c++ │ │ │ ├── c89 │ │ │ ├── c99 │ │ │ ├── cc │ │ │ ├── clang │ │ │ ├── clang++ │ │ │ ├── cpp │ │ │ ├── curl │ │ │ ├── g++ │ │ │ ├── g++-10 │ │ │ ├── g++-11 │ │ │ ├── g++-12 │ │ │ ├── g++-13 │ │ │ ├── g++-14 │ │ │ ├── g++-15 │ │ │ ├── g++-4.2 │ │ │ ├── g++-4.9 │ │ │ ├── g++-5 │ │ │ ├── g++-6 │ │ │ ├── g++-7 │ │ │ ├── g++-8 │ │ │ ├── g++-9 │ │ │ ├── gcc │ │ │ ├── gcc-10 │ │ │ ├── gcc-11 │ │ │ ├── gcc-12 │ │ │ ├── gcc-13 │ │ │ ├── gcc-14 │ │ │ ├── gcc-15 │ │ │ ├── gcc-7 │ │ │ ├── gcc-8 │ │ │ ├── gcc-9 │ │ │ ├── git │ │ │ ├── ld │ │ │ ├── llvm_clang │ │ │ ├── llvm_clang++ │ │ │ ├── ninja │ │ │ ├── svn │ │ │ ├── swift │ │ │ └── swiftc │ │ └── utils.sh │ ├── simulate_system.rb │ ├── software_spec.rb │ ├── sorbet │ │ ├── config │ │ ├── rbi │ │ │ ├── annotations │ │ │ │ ├── .gitattributes │ │ │ │ ├── minitest.rbi │ │ │ │ └── rainbow.rbi │ │ │ ├── dsl │ │ │ │ ├── .gitattributes │ │ │ │ ├── bottle.rbi │ │ │ │ ├── cask │ │ │ │ │ ├── cask.rbi │ │ │ │ │ ├── config.rbi │ │ │ │ │ ├── dsl │ │ │ │ │ │ ├── base.rbi │ │ │ │ │ │ ├── caveats.rbi │ │ │ │ │ │ ├── postflight.rbi │ │ │ │ │ │ ├── preflight.rbi │ │ │ │ │ │ ├── uninstall_postflight.rbi │ │ │ │ │ │ └── uninstall_preflight.rbi │ │ │ │ │ └── url.rbi │ │ │ │ ├── caveats.rbi │ │ │ │ ├── checksum.rbi │ │ │ │ ├── external_patch.rbi │ │ │ │ ├── formula.rbi │ │ │ │ ├── head_software_spec.rbi │ │ │ │ ├── homebrew │ │ │ │ │ ├── cmd │ │ │ │ │ │ ├── alias.rbi │ │ │ │ │ │ ├── analytics.rbi │ │ │ │ │ │ ├── autoremove.rbi │ │ │ │ │ │ ├── bundle.rbi │ │ │ │ │ │ ├── cache.rbi │ │ │ │ │ │ ├── caskroom.rbi │ │ │ │ │ │ ├── casks.rbi │ │ │ │ │ │ ├── cellar.rbi │ │ │ │ │ │ ├── cleanup_cmd.rbi │ │ │ │ │ │ ├── command.rbi │ │ │ │ │ │ ├── command_not_found_init.rbi │ │ │ │ │ │ ├── commands_cmd.rbi │ │ │ │ │ │ ├── completions_cmd.rbi │ │ │ │ │ │ ├── config.rbi │ │ │ │ │ │ ├── deps.rbi │ │ │ │ │ │ ├── desc.rbi │ │ │ │ │ │ ├── developer.rbi │ │ │ │ │ │ ├── docs.rbi │ │ │ │ │ │ ├── doctor.rbi │ │ │ │ │ │ ├── env.rbi │ │ │ │ │ │ ├── fetch_cmd.rbi │ │ │ │ │ │ ├── formulae.rbi │ │ │ │ │ │ ├── gist_logs.rbi │ │ │ │ │ │ ├── help_cmd.rbi │ │ │ │ │ │ ├── home.rbi │ │ │ │ │ │ ├── info.rbi │ │ │ │ │ │ ├── install_cmd.rbi │ │ │ │ │ │ ├── leaves.rbi │ │ │ │ │ │ ├── link.rbi │ │ │ │ │ │ ├── list.rbi │ │ │ │ │ │ ├── log.rbi │ │ │ │ │ │ ├── mcp_server_cmd.rbi │ │ │ │ │ │ ├── migrate.rbi │ │ │ │ │ │ ├── missing.rbi │ │ │ │ │ │ ├── nodenv_sync.rbi │ │ │ │ │ │ ├── options_cmd.rbi │ │ │ │ │ │ ├── outdated.rbi │ │ │ │ │ │ ├── pin.rbi │ │ │ │ │ │ ├── postinstall.rbi │ │ │ │ │ │ ├── prefix.rbi │ │ │ │ │ │ ├── pyenv_sync.rbi │ │ │ │ │ │ ├── rbenv_sync.rbi │ │ │ │ │ │ ├── readall_cmd.rbi │ │ │ │ │ │ ├── reinstall.rbi │ │ │ │ │ │ ├── repository.rbi │ │ │ │ │ │ ├── search_cmd.rbi │ │ │ │ │ │ ├── services.rbi │ │ │ │ │ │ ├── setup_ruby.rbi │ │ │ │ │ │ ├── shellenv.rbi │ │ │ │ │ │ ├── tab_cmd.rbi │ │ │ │ │ │ ├── tap_cmd.rbi │ │ │ │ │ │ ├── tap_info.rbi │ │ │ │ │ │ ├── taps.rbi │ │ │ │ │ │ ├── test_bot_cmd.rbi │ │ │ │ │ │ ├── unalias.rbi │ │ │ │ │ │ ├── uninstall_cmd.rbi │ │ │ │ │ │ ├── unlink_cmd.rbi │ │ │ │ │ │ ├── unpin.rbi │ │ │ │ │ │ ├── untap.rbi │ │ │ │ │ │ ├── update.rbi │ │ │ │ │ │ ├── update_if_needed.rbi │ │ │ │ │ │ ├── update_report.rbi │ │ │ │ │ │ ├── update_reset.rbi │ │ │ │ │ │ ├── upgrade_cmd.rbi │ │ │ │ │ │ ├── uses.rbi │ │ │ │ │ │ ├── vendor_install.rbi │ │ │ │ │ │ ├── version.rbi │ │ │ │ │ │ └── which_formula.rbi │ │ │ │ │ ├── dev_cmd │ │ │ │ │ │ ├── audit.rbi │ │ │ │ │ │ ├── bottle.rbi │ │ │ │ │ │ ├── bump.rbi │ │ │ │ │ │ ├── bump_cask_pr.rbi │ │ │ │ │ │ ├── bump_formula_pr.rbi │ │ │ │ │ │ ├── bump_revision.rbi │ │ │ │ │ │ ├── bump_unversioned_casks.rbi │ │ │ │ │ │ ├── cat.rbi │ │ │ │ │ │ ├── contributions.rbi │ │ │ │ │ │ ├── create.rbi │ │ │ │ │ │ ├── debugger.rbi │ │ │ │ │ │ ├── determine_test_runners.rbi │ │ │ │ │ │ ├── dispatch_build_bottle.rbi │ │ │ │ │ │ ├── edit.rbi │ │ │ │ │ │ ├── extract.rbi │ │ │ │ │ │ ├── formula_analytics.rbi │ │ │ │ │ │ ├── formula_cmd.rbi │ │ │ │ │ │ ├── generate_analytics_api.rbi │ │ │ │ │ │ ├── generate_cask_api.rbi │ │ │ │ │ │ ├── generate_cask_ci_matrix.rbi │ │ │ │ │ │ ├── generate_formula_api.rbi │ │ │ │ │ │ ├── generate_man_completions.rbi │ │ │ │ │ │ ├── install_bundler_gems.rbi │ │ │ │ │ │ ├── irb.rbi │ │ │ │ │ │ ├── lgtm.rbi │ │ │ │ │ │ ├── linkage.rbi │ │ │ │ │ │ ├── livecheck_cmd.rbi │ │ │ │ │ │ ├── pr_automerge.rbi │ │ │ │ │ │ ├── pr_publish.rbi │ │ │ │ │ │ ├── pr_pull.rbi │ │ │ │ │ │ ├── pr_upload.rbi │ │ │ │ │ │ ├── prof.rbi │ │ │ │ │ │ ├── release.rbi │ │ │ │ │ │ ├── rubocop.rbi │ │ │ │ │ │ ├── ruby.rbi │ │ │ │ │ │ ├── rubydoc.rbi │ │ │ │ │ │ ├── sh.rbi │ │ │ │ │ │ ├── style_cmd.rbi │ │ │ │ │ │ ├── tap_new.rbi │ │ │ │ │ │ ├── test.rbi │ │ │ │ │ │ ├── tests.rbi │ │ │ │ │ │ ├── typecheck.rbi │ │ │ │ │ │ ├── unbottled.rbi │ │ │ │ │ │ ├── unpack.rbi │ │ │ │ │ │ ├── update_license_data.rbi │ │ │ │ │ │ ├── update_maintainers.rbi │ │ │ │ │ │ ├── update_perl_resources.rbi │ │ │ │ │ │ ├── update_python_resources.rbi │ │ │ │ │ │ ├── update_sponsors.rbi │ │ │ │ │ │ ├── update_test.rbi │ │ │ │ │ │ ├── vendor_gems.rbi │ │ │ │ │ │ ├── verify.rbi │ │ │ │ │ │ └── which_update.rbi │ │ │ │ │ ├── env_config.rbi │ │ │ │ │ ├── livecheck │ │ │ │ │ │ └── strategy │ │ │ │ │ │ │ ├── extract_plist │ │ │ │ │ │ │ └── item.rbi │ │ │ │ │ │ │ └── sparkle │ │ │ │ │ │ │ └── item.rbi │ │ │ │ │ └── service.rbi │ │ │ │ ├── keg.rbi │ │ │ │ ├── livecheck.rbi │ │ │ │ ├── mach_o_shim.rbi │ │ │ │ ├── path.rbi │ │ │ │ ├── pkg_version.rbi │ │ │ │ ├── resource_stage_context.rbi │ │ │ │ ├── rubo_cop │ │ │ │ │ ├── cask │ │ │ │ │ │ └── ast │ │ │ │ │ │ │ ├── cask_block.rbi │ │ │ │ │ │ │ └── stanza.rbi │ │ │ │ │ └── cop │ │ │ │ │ │ ├── cask │ │ │ │ │ │ ├── no_autobump.rbi │ │ │ │ │ │ ├── on_desc_stanza.rbi │ │ │ │ │ │ ├── on_homepage_stanza.rbi │ │ │ │ │ │ ├── on_system_conditionals.rbi │ │ │ │ │ │ ├── on_url_stanza.rbi │ │ │ │ │ │ ├── stanza_grouping.rbi │ │ │ │ │ │ └── variables.rbi │ │ │ │ │ │ ├── formula_audit │ │ │ │ │ │ ├── assert_statements.rbi │ │ │ │ │ │ ├── class_inheritance.rbi │ │ │ │ │ │ ├── class_name.rbi │ │ │ │ │ │ ├── comments.rbi │ │ │ │ │ │ ├── components_order.rbi │ │ │ │ │ │ ├── dependency_order.rbi │ │ │ │ │ │ ├── deprecate_disable_date.rbi │ │ │ │ │ │ ├── deprecate_disable_reason.rbi │ │ │ │ │ │ ├── generate_completions_dsl.rbi │ │ │ │ │ │ ├── git_urls.rbi │ │ │ │ │ │ ├── license_arrays.rbi │ │ │ │ │ │ ├── licenses.rbi │ │ │ │ │ │ ├── lines.rbi │ │ │ │ │ │ ├── mac_os_on_linux.rbi │ │ │ │ │ │ ├── miscellaneous.rbi │ │ │ │ │ │ ├── mpi_check.rbi │ │ │ │ │ │ ├── no_autobump.rbi │ │ │ │ │ │ ├── on_system_conditionals.rbi │ │ │ │ │ │ ├── option_declarations.rbi │ │ │ │ │ │ ├── patches.rbi │ │ │ │ │ │ ├── py_pi_urls.rbi │ │ │ │ │ │ ├── pyoxidizer_check.rbi │ │ │ │ │ │ ├── python_versions.rbi │ │ │ │ │ │ ├── quic_tls_check.rbi │ │ │ │ │ │ ├── safe_popen_commands.rbi │ │ │ │ │ │ ├── shell_variables.rbi │ │ │ │ │ │ ├── single_generate_completions_dsl_call.rbi │ │ │ │ │ │ ├── std_npm_args.rbi │ │ │ │ │ │ ├── test.rbi │ │ │ │ │ │ ├── text.rbi │ │ │ │ │ │ └── urls.rbi │ │ │ │ │ │ ├── formula_audit_strict │ │ │ │ │ │ ├── git_urls.rbi │ │ │ │ │ │ ├── make_check.rbi │ │ │ │ │ │ ├── requirements.rbi │ │ │ │ │ │ ├── rust_check.rbi │ │ │ │ │ │ ├── test_present.rbi │ │ │ │ │ │ └── text.rbi │ │ │ │ │ │ ├── formula_cop.rbi │ │ │ │ │ │ ├── homebrew │ │ │ │ │ │ ├── blank.rbi │ │ │ │ │ │ ├── compact_blank.rbi │ │ │ │ │ │ ├── move_to_extend_os.rbi │ │ │ │ │ │ ├── negate_include.rbi │ │ │ │ │ │ ├── no_fileutils_rmrf.rbi │ │ │ │ │ │ ├── presence.rbi │ │ │ │ │ │ ├── present.rbi │ │ │ │ │ │ └── safe_navigation_with_blank.rbi │ │ │ │ │ │ └── on_system_conditionals_helper.rbi │ │ │ │ ├── software_spec.rbi │ │ │ │ ├── tty.rbi │ │ │ │ └── utils │ │ │ │ │ └── ast │ │ │ │ │ └── formula_ast.rbi │ │ │ ├── gems │ │ │ │ ├── .gitattributes │ │ │ │ ├── addressable@2.8.8.rbi │ │ │ │ ├── ast@2.4.3.rbi │ │ │ │ ├── bindata@2.5.1.rbi │ │ │ │ ├── concurrent-ruby@1.3.5.rbi │ │ │ │ ├── csv@3.3.5.rbi │ │ │ │ ├── elftools@1.3.1.rbi │ │ │ │ ├── erubi@1.13.1.rbi │ │ │ │ ├── json_schemer@2.4.0.rbi │ │ │ │ ├── kramdown@2.5.1.rbi │ │ │ │ ├── lint_roller@1.1.0.rbi │ │ │ │ ├── method_source@1.1.0.rbi │ │ │ │ ├── minitest@5.26.2.rbi │ │ │ │ ├── parallel_tests@5.5.0.rbi │ │ │ │ ├── patchelf@1.5.2.rbi │ │ │ │ ├── plist@3.7.2.rbi │ │ │ │ ├── prism@1.6.0.rbi │ │ │ │ ├── pry@0.15.2.rbi │ │ │ │ ├── rainbow@3.1.1.rbi │ │ │ │ ├── rbi@0.3.7.rbi │ │ │ │ ├── rbs@4.0.0.dev.4.rbi │ │ │ │ ├── regexp_parser@2.11.3.rbi │ │ │ │ ├── require-hooks@0.2.2.rbi │ │ │ │ ├── rspec-core@3.13.6.rbi │ │ │ │ ├── rspec-expectations@3.13.5.rbi │ │ │ │ ├── rspec-sorbet@1.9.2.rbi │ │ │ │ ├── rspec-support@3.13.6.rbi │ │ │ │ ├── rubocop-ast@1.48.0.rbi │ │ │ │ ├── rubocop-rspec@3.8.0.rbi │ │ │ │ ├── rubocop@1.81.7.rbi │ │ │ │ ├── ruby-lsp@0.26.4.rbi │ │ │ │ ├── ruby-macho@4.1.0.rbi │ │ │ │ ├── ruby-progressbar@1.13.0.rbi │ │ │ │ ├── simplecov-cobertura@3.1.0.rbi │ │ │ │ ├── simplecov-html@0.13.2.rbi │ │ │ │ ├── simplecov@0.22.0.rbi │ │ │ │ ├── spoom@1.7.10.rbi │ │ │ │ ├── stackprof@0.2.27.rbi │ │ │ │ ├── tapioca@0.17.9.rbi │ │ │ │ ├── test-prof@1.4.4.rbi │ │ │ │ ├── thor@1.4.0.rbi │ │ │ │ ├── vernier@1.9.0.rbi │ │ │ │ ├── warning@1.5.0.rbi │ │ │ │ └── yard@0.9.37.rbi │ │ │ ├── parser@3.3.8.0.rbi │ │ │ └── upstream.rbi │ │ └── tapioca │ │ │ ├── compilers │ │ │ ├── args.rb │ │ │ ├── cask │ │ │ │ └── config.rb │ │ │ ├── env_config.rb │ │ │ ├── forwardables.rb │ │ │ ├── rubocop.rb │ │ │ ├── rubocop_cask_ast_stanza.rb │ │ │ └── tty.rb │ │ │ ├── config.yml │ │ │ ├── prerequire.rb │ │ │ ├── require.rb │ │ │ └── utils.rb │ ├── source_location.rb │ ├── standalone.rb │ ├── standalone │ │ ├── init.rb │ │ ├── init.rbi │ │ └── sorbet.rb │ ├── startup.rb │ ├── startup │ │ ├── bootsnap.rb │ │ ├── bootsnap.rbi │ │ ├── config.rb │ │ └── ruby_path.rb │ ├── style.rb │ ├── system_command.rb │ ├── system_config.rb │ ├── tab.rb │ ├── tap.rb │ ├── tap.sh │ ├── tap_auditor.rb │ ├── tap_constants.rb │ ├── test.rb │ ├── test │ │ ├── .brew-aliases │ │ │ └── foo_test │ │ ├── .rubocop.yml │ │ ├── ENV_spec.rb │ │ ├── PATH_spec.rb │ │ ├── abstract_command_spec.rb │ │ ├── abstract_command_spec.rbi │ │ ├── api │ │ │ ├── cask_spec.rb │ │ │ ├── formula_spec.rb │ │ │ └── internal_spec.rb │ │ ├── api_spec.rb │ │ ├── attestation_spec.rb │ │ ├── bash_spec.rb │ │ ├── bottle_filename_spec.rb │ │ ├── bottle_spec.rb │ │ ├── bottle_specification_spec.rb │ │ ├── build_environment_spec.rb │ │ ├── build_options_spec.rb │ │ ├── bump_version_parser_spec.rb │ │ ├── bundle │ │ │ ├── brew_services_spec.rb │ │ │ ├── brewfile_spec.rb │ │ │ ├── bundle_spec.rb │ │ │ ├── cask_dumper_spec.rb │ │ │ ├── cask_installer_spec.rb │ │ │ ├── commands │ │ │ │ ├── add_spec.rb │ │ │ │ ├── check_spec.rb │ │ │ │ ├── check_spec.rbi │ │ │ │ ├── cleanup_spec.rb │ │ │ │ ├── dump_spec.rb │ │ │ │ ├── exec_spec.rb │ │ │ │ ├── install_spec.rb │ │ │ │ ├── list_spec.rb │ │ │ │ └── remove_spec.rb │ │ │ ├── dsl_spec.rb │ │ │ ├── dumper_spec.rb │ │ │ ├── flatpak_checker_spec.rb │ │ │ ├── flatpak_dumper_spec.rb │ │ │ ├── flatpak_installer_spec.rb │ │ │ ├── formula_dumper_spec.rb │ │ │ ├── formula_installer_spec.rb │ │ │ ├── go_dumper_spec.rb │ │ │ ├── go_installer_spec.rb │ │ │ ├── mac_app_store_dumper_spec.rb │ │ │ ├── mac_app_store_installer_spec.rb │ │ │ ├── remover_spec.rb │ │ │ ├── skipper_spec.rb │ │ │ ├── tap_dumper_spec.rb │ │ │ ├── tap_installer_spec.rb │ │ │ ├── vscode_extension_dumper_spec.rb │ │ │ └── vscode_extension_installer_spec.rb │ │ ├── bundle_version_spec.rb │ │ ├── cache_store_spec.rb │ │ ├── cask │ │ │ ├── artifact │ │ │ │ ├── abstract_artifact_spec.rb │ │ │ │ ├── alt_target_spec.rb │ │ │ │ ├── app_spec.rb │ │ │ │ ├── bashcompletion_spec.rb │ │ │ │ ├── binary_spec.rb │ │ │ │ ├── fishlcompletion_spec.rb │ │ │ │ ├── generic_artifact_spec.rb │ │ │ │ ├── installer_spec.rb │ │ │ │ ├── manpage_spec.rb │ │ │ │ ├── pkg_spec.rb │ │ │ │ ├── postflight_block_spec.rb │ │ │ │ ├── preflight_block_spec.rb │ │ │ │ ├── relocated_spec.rb │ │ │ │ ├── shared_examples │ │ │ │ │ └── uninstall_zap.rb │ │ │ │ ├── suite_spec.rb │ │ │ │ ├── symlinked_spec.rb │ │ │ │ ├── two_apps_correct_spec.rb │ │ │ │ ├── uninstall_no_zap_spec.rb │ │ │ │ ├── uninstall_spec.rb │ │ │ │ ├── zap_spec.rb │ │ │ │ └── zshcompletion_spec.rb │ │ │ ├── audit_spec.rb │ │ │ ├── cask_loader │ │ │ │ ├── from_api_loader_spec.rb │ │ │ │ ├── from_content_loader_spec.rb │ │ │ │ ├── from_path_loader_spec.rb │ │ │ │ ├── from_tap_loader_spec.rb │ │ │ │ └── from_uri_loader_spec.rb │ │ │ ├── cask_loader_spec.rb │ │ │ ├── cask_spec.rb │ │ │ ├── config_spec.rb │ │ │ ├── denylist_spec.rb │ │ │ ├── depends_on_spec.rb │ │ │ ├── download_spec.rb │ │ │ ├── dsl │ │ │ │ ├── caveats_spec.rb │ │ │ │ ├── container_spec.rb │ │ │ │ ├── postflight_spec.rb │ │ │ │ ├── preflight_spec.rb │ │ │ │ ├── rename_spec.rb │ │ │ │ ├── shared_examples │ │ │ │ │ ├── base.rb │ │ │ │ │ └── staged.rb │ │ │ │ ├── uninstall_postflight_spec.rb │ │ │ │ ├── uninstall_preflight_spec.rb │ │ │ │ └── version_spec.rb │ │ │ ├── dsl_spec.rb │ │ │ ├── info_spec.rb │ │ │ ├── installer_spec.rb │ │ │ ├── list_spec.rb │ │ │ ├── macos_spec.rb │ │ │ ├── pkg_spec.rb │ │ │ ├── reinstall_spec.rb │ │ │ ├── tab_spec.rb │ │ │ ├── uninstall_spec.rb │ │ │ ├── upgrade_spec.rb │ │ │ └── utils_spec.rb │ │ ├── cask_dependent_spec.rb │ │ ├── caveats_spec.rb │ │ ├── checksum_spec.rb │ │ ├── checksum_verification_spec.rb │ │ ├── cleaner_spec.rb │ │ ├── cleanup_spec.rb │ │ ├── cli │ │ │ ├── named_args_spec.rb │ │ │ ├── parser_spec.rb │ │ │ └── parser_spec.rbi │ │ ├── cmd │ │ │ ├── --cache_spec.rb │ │ │ ├── --caskroom_spec.rb │ │ │ ├── --cellar_spec.rb │ │ │ ├── --env_spec.rb │ │ │ ├── --prefix_spec.rb │ │ │ ├── --repository_spec.rb │ │ │ ├── --version_spec.rb │ │ │ ├── alias_spec.rb │ │ │ ├── analytics_spec.rb │ │ │ ├── autoremove_spec.rb │ │ │ ├── bundle_spec.rb │ │ │ ├── casks_spec.rb │ │ │ ├── cleanup_spec.rb │ │ │ ├── command-not-found-init_spec.rb │ │ │ ├── command_spec.rb │ │ │ ├── commands_spec.rb │ │ │ ├── completions_spec.rb │ │ │ ├── config_spec.rb │ │ │ ├── custom-external-command_spec.rb │ │ │ ├── deps_spec.rb │ │ │ ├── desc_spec.rb │ │ │ ├── developer_spec.rb │ │ │ ├── docs_spec.rb │ │ │ ├── doctor_spec.rb │ │ │ ├── fetch_spec.rb │ │ │ ├── formulae_spec.rb │ │ │ ├── gist-logs_spec.rb │ │ │ ├── help_spec.rb │ │ │ ├── home_spec.rb │ │ │ ├── info_spec.rb │ │ │ ├── install_spec.rb │ │ │ ├── leaves_spec.rb │ │ │ ├── link_spec.rb │ │ │ ├── list_spec.rb │ │ │ ├── log_spec.rb │ │ │ ├── mcp-server_spec.rb │ │ │ ├── migrate_spec.rb │ │ │ ├── missing_spec.rb │ │ │ ├── nodenv-sync_spec.rb │ │ │ ├── options_spec.rb │ │ │ ├── outdated_spec.rb │ │ │ ├── pin_spec.rb │ │ │ ├── postinstall_spec.rb │ │ │ ├── pyenv-sync_spec.rb │ │ │ ├── rbenv-sync_spec.rb │ │ │ ├── readall_spec.rb │ │ │ ├── reinstall_spec.rb │ │ │ ├── search_spec.rb │ │ │ ├── services_spec.rb │ │ │ ├── setup-ruby_spec.rb │ │ │ ├── shared_examples │ │ │ │ ├── args_parse.rb │ │ │ │ └── reinstall_pkgconf_if_needed.rb │ │ │ ├── shellenv_spec.rb │ │ │ ├── tab_spec.rb │ │ │ ├── tap-info_spec.rb │ │ │ ├── tap_spec.rb │ │ │ ├── unalias_spec.rb │ │ │ ├── uninstall_spec.rb │ │ │ ├── unlink_spec.rb │ │ │ ├── unpin_spec.rb │ │ │ ├── untap_spec.rb │ │ │ ├── update-report_spec.rb │ │ │ ├── upgrade_spec.rb │ │ │ ├── uses_spec.rb │ │ │ └── which-formula_spec.rb │ │ ├── commands_spec.rb │ │ ├── compiler_failure_spec.rb │ │ ├── compiler_selector_spec.rb │ │ ├── completions_spec.rb │ │ ├── cxxstdlib_spec.rb │ │ ├── dependable_spec.rb │ │ ├── dependencies_helpers_spec.rb │ │ ├── dependencies_spec.rb │ │ ├── dependency_collector_spec.rb │ │ ├── dependency_expansion_spec.rb │ │ ├── dependency_spec.rb │ │ ├── deprecate_disable_spec.rb │ │ ├── description_cache_store_spec.rb │ │ ├── descriptions_spec.rb │ │ ├── dev-cmd │ │ │ ├── audit_spec.rb │ │ │ ├── bottle_spec.rb │ │ │ ├── bump-cask-pr_spec.rb │ │ │ ├── bump-formula-pr_spec.rb │ │ │ ├── bump-revision_spec.rb │ │ │ ├── bump-unversioned-casks_spec.rb │ │ │ ├── bump_spec.rb │ │ │ ├── cat_spec.rb │ │ │ ├── contributions_spec.rb │ │ │ ├── create_spec.rb │ │ │ ├── determine-test-runners_spec.rb │ │ │ ├── dispatch-build-bottle_spec.rb │ │ │ ├── edit_spec.rb │ │ │ ├── extract_spec.rb │ │ │ ├── formula-analytics_spec.rb │ │ │ ├── formula_spec.rb │ │ │ ├── generate-analytics-api_spec.rb │ │ │ ├── generate-cask-api_spec.rb │ │ │ ├── generate-cask-ci-matrix_spec.rb │ │ │ ├── generate-formula-api_spec.rb │ │ │ ├── generate-man-completions_spec.rb │ │ │ ├── install-bundler-gems_spec.rb │ │ │ ├── irb_spec.rb │ │ │ ├── lgtm_spec.rb │ │ │ ├── linkage_spec.rb │ │ │ ├── livecheck_spec.rb │ │ │ ├── pr-automerge_spec.rb │ │ │ ├── pr-publish_spec.rb │ │ │ ├── pr-pull_spec.rb │ │ │ ├── pr-upload_spec.rb │ │ │ ├── prof_spec.rb │ │ │ ├── release_spec.rb │ │ │ ├── ruby_spec.rb │ │ │ ├── sh_spec.rb │ │ │ ├── style_spec.rb │ │ │ ├── tap-new_spec.rb │ │ │ ├── test_spec.rb │ │ │ ├── tests_spec.rb │ │ │ ├── typecheck_spec.rb │ │ │ ├── unbottled_spec.rb │ │ │ ├── unpack_spec.rb │ │ │ ├── update-license-data_spec.rb │ │ │ ├── update-maintainers_spec.rb │ │ │ ├── update-perl-resources_spec.rb │ │ │ ├── update-python-resources_spec.rb │ │ │ ├── update-sponsors_spec.rb │ │ │ ├── update-test_spec.rb │ │ │ ├── vendor-gems_spec.rb │ │ │ ├── verify_spec.rb │ │ │ └── which-update_spec.rb │ │ ├── diagnostic_checks_spec.rb │ │ ├── download_strategies │ │ │ ├── abstract_spec.rb │ │ │ ├── curl_github_packages_spec.rb │ │ │ ├── curl_post_spec.rb │ │ │ ├── curl_spec.rb │ │ │ ├── detector_spec.rb │ │ │ ├── git_spec.rb │ │ │ ├── github_git_spec.rb │ │ │ ├── subversion_spec.rb │ │ │ └── vcs_spec.rb │ │ ├── env_config_spec.rb │ │ ├── error_during_execution_spec.rb │ │ ├── exceptions_spec.rb │ │ ├── extend │ │ │ ├── array_spec.rb │ │ │ ├── blank_spec.rb │ │ │ ├── kernel_spec.rb │ │ │ └── pathname │ │ │ │ └── write_mkpath_extension_spec.rb │ │ ├── formatter_spec.rb │ │ ├── formula_auditor_spec.rb │ │ ├── formula_creator_spec.rb │ │ ├── formula_info_spec.rb │ │ ├── formula_installer_bottle_spec.rb │ │ ├── formula_installer_spec.rb │ │ ├── formula_pin_spec.rb │ │ ├── formula_spec.rb │ │ ├── formula_spec_selection_spec.rb │ │ ├── formula_validation_spec.rb │ │ ├── formulary_spec.rb │ │ ├── free_port_spec.rb │ │ ├── github_runner_matrix_spec.rb │ │ ├── github_runner_spec.rb │ │ ├── global_spec.rb │ │ ├── hardware │ │ │ └── cpu_spec.rb │ │ ├── head_software_spec_spec.rb │ │ ├── installed_dependents_spec.rb │ │ ├── keg_only_reason_spec.rb │ │ ├── keg_relocate │ │ │ ├── binary_relocation_spec.rb │ │ │ ├── grep_spec.rb │ │ │ ├── relocation_spec.rb │ │ │ └── text_spec.rb │ │ ├── keg_spec.rb │ │ ├── language │ │ │ ├── java_spec.rb │ │ │ ├── node │ │ │ │ └── shebang_spec.rb │ │ │ ├── node_spec.rb │ │ │ ├── perl │ │ │ │ └── shebang_spec.rb │ │ │ ├── php │ │ │ │ └── shebang_spec.rb │ │ │ ├── python │ │ │ │ ├── shebang_spec.rb │ │ │ │ └── virtualenv_spec.rb │ │ │ └── python_spec.rb │ │ ├── lazy_object_spec.rb │ │ ├── linkage_cache_store_spec.rb │ │ ├── linux_runner_spec_spec.rb │ │ ├── livecheck │ │ │ ├── livecheck_spec.rb │ │ │ ├── livecheck_version_spec.rb │ │ │ ├── options_spec.rb │ │ │ ├── skip_conditions_spec.rb │ │ │ ├── strategy │ │ │ │ ├── apache_spec.rb │ │ │ │ ├── bitbucket_spec.rb │ │ │ │ ├── cpan_spec.rb │ │ │ │ ├── crate_spec.rb │ │ │ │ ├── electron_builder_spec.rb │ │ │ │ ├── extract_plist_spec.rb │ │ │ │ ├── git_spec.rb │ │ │ │ ├── github_latest_spec.rb │ │ │ │ ├── github_releases_spec.rb │ │ │ │ ├── gnome_spec.rb │ │ │ │ ├── gnu_spec.rb │ │ │ │ ├── hackage_spec.rb │ │ │ │ ├── header_match_spec.rb │ │ │ │ ├── json_spec.rb │ │ │ │ ├── launchpad_spec.rb │ │ │ │ ├── npm_spec.rb │ │ │ │ ├── page_match_spec.rb │ │ │ │ ├── pypi_spec.rb │ │ │ │ ├── sourceforge_spec.rb │ │ │ │ ├── sparkle_spec.rb │ │ │ │ ├── xml_spec.rb │ │ │ │ ├── xorg_spec.rb │ │ │ │ └── yaml_spec.rb │ │ │ └── strategy_spec.rb │ │ ├── livecheck_spec.rb │ │ ├── locale_spec.rb │ │ ├── lock_file_spec.rb │ │ ├── macos_runner_spec_spec.rb │ │ ├── macos_version_spec.rb │ │ ├── mcp_server_spec.rb │ │ ├── messages_spec.rb │ │ ├── migrator_spec.rb │ │ ├── missing_formula_spec.rb │ │ ├── options │ │ │ ├── deprecated_option_spec.rb │ │ │ └── option_spec.rb │ │ ├── options_spec.rb │ │ ├── os │ │ │ ├── linux │ │ │ │ ├── dependency_collector_spec.rb │ │ │ │ ├── diagnostic_spec.rb │ │ │ │ ├── elf_spec.rb │ │ │ │ ├── formula_installer_spec.rb │ │ │ │ ├── formula_spec.rb │ │ │ │ ├── ld_spec.rb │ │ │ │ ├── libstdcxx_spec.rb │ │ │ │ └── pathname_spec.rb │ │ │ ├── linux_spec.rb │ │ │ ├── mac │ │ │ │ ├── dependency_collector_spec.rb │ │ │ │ ├── diagnostic_spec.rb │ │ │ │ ├── formula_installer_spec.rb │ │ │ │ ├── formula_spec.rb │ │ │ │ ├── keg_spec.rb │ │ │ │ ├── mach_spec.rb │ │ │ │ ├── pkgconfig_spec.rb │ │ │ │ ├── reinstall_spec.rb │ │ │ │ └── sdk_spec.rb │ │ │ ├── mac_spec.rb │ │ │ └── os_spec.rb │ │ ├── patch_spec.rb │ │ ├── patching_spec.rb │ │ ├── pathname_spec.rb │ │ ├── pkg_version_spec.rb │ │ ├── requirement_spec.rb │ │ ├── requirements │ │ │ ├── arch_requirement_spec.rb │ │ │ ├── codesign_requirement_spec.rb │ │ │ ├── linux_requirement_spec.rb │ │ │ └── macos_requirement_spec.rb │ │ ├── requirements_spec.rb │ │ ├── resource_spec.rb │ │ ├── rubocop_spec.rb │ │ ├── rubocops │ │ │ ├── blank_spec.rb │ │ │ ├── bottle │ │ │ │ ├── bottle_digest_indentation_spec.rb │ │ │ │ ├── bottle_format_spec.rb │ │ │ │ ├── bottle_order_spec.rb │ │ │ │ └── bottle_tag_indentation_spec.rb │ │ │ ├── cask │ │ │ │ ├── array_alphabetization_spec.rb │ │ │ │ ├── deprecate_disable_unsigned_reason_spec.rb │ │ │ │ ├── desc_spec.rb │ │ │ │ ├── discontinued_spec.rb │ │ │ │ ├── homepage_url_styling_spec.rb │ │ │ │ ├── no_autobump.rb │ │ │ │ ├── no_overrides_spec.rb │ │ │ │ ├── on_system_conditionals_spec.rb │ │ │ │ ├── shared_filelist_glob_spec.rb │ │ │ │ ├── stanza_grouping_spec.rb │ │ │ │ ├── stanza_order_spec.rb │ │ │ │ ├── uninstall_methods_order_spec.rb │ │ │ │ ├── url_legacy_comma_separators_spec.rb │ │ │ │ ├── url_spec.rb │ │ │ │ └── variables_spec.rb │ │ │ ├── caveats_spec.rb │ │ │ ├── checksum │ │ │ │ ├── checksum_case_spec.rb │ │ │ │ └── checksum_spec.rb │ │ │ ├── class │ │ │ │ ├── class_name_spec.rb │ │ │ │ ├── test_present.rb │ │ │ │ └── test_spec.rb │ │ │ ├── compact_blank_spec.rb │ │ │ ├── components_order_spec.rb │ │ │ ├── components_redundancy_spec.rb │ │ │ ├── conflicts_spec.rb │ │ │ ├── dependency_order_spec.rb │ │ │ ├── deprecate_disable │ │ │ │ ├── date_spec.rb │ │ │ │ └── reason_spec.rb │ │ │ ├── desc_spec.rb │ │ │ ├── disable_comment_spec.rb │ │ │ ├── exec_shell_metacharacters_spec.rb │ │ │ ├── files_spec.rb │ │ │ ├── homepage_spec.rb │ │ │ ├── install_bundler_gems_spec.rb │ │ │ ├── io_read_spec.rb │ │ │ ├── keg_only_spec.rb │ │ │ ├── lines │ │ │ │ ├── class_inheritance_spec.rb │ │ │ │ ├── generate_completions_spec.rb │ │ │ │ └── quictls_check_spec.rb │ │ │ ├── lines_spec.rb │ │ │ ├── livecheck │ │ │ │ ├── regex_case_insensitive_spec.rb │ │ │ │ ├── regex_extension_spec.rb │ │ │ │ ├── regex_if_page_match_spec.rb │ │ │ │ ├── regex_parentheses_spec.rb │ │ │ │ ├── skip_spec.rb │ │ │ │ ├── url_provided_spec.rb │ │ │ │ └── url_symbol_spec.rb │ │ │ ├── move_to_extend_os_spec.rb │ │ │ ├── negate_include_spec.rb │ │ │ ├── no_autobump.rb │ │ │ ├── no_fileutils_rmrf_spec.rb │ │ │ ├── options_spec.rb │ │ │ ├── patches_spec.rb │ │ │ ├── presence_spec.rb │ │ │ ├── present_spec.rb │ │ │ ├── provided_by_macos_spec.rb │ │ │ ├── resource_requires_dependencies_spec.rb │ │ │ ├── safe_navigation_with_blank_spec.rb │ │ │ ├── service_spec.rb │ │ │ ├── shell_commands_spec.rb │ │ │ ├── text │ │ │ │ ├── assert_statements_spec.rb │ │ │ │ ├── comments_spec.rb │ │ │ │ ├── license_arrays_spec.rb │ │ │ │ ├── licenses_spec.rb │ │ │ │ ├── macos_on_linux_spec.rb │ │ │ │ ├── make_check_spec.rb │ │ │ │ ├── miscellaneous_spec.rb │ │ │ │ ├── mpi_check_spec.rb │ │ │ │ ├── on_system_conditionals_spec.rb │ │ │ │ ├── option_declarations_spec.rb │ │ │ │ ├── python_versions_spec.rb │ │ │ │ ├── safe_popen_commands_spec.rb │ │ │ │ ├── shell_variables_spec.rb │ │ │ │ ├── std_npm_args_spec.rb │ │ │ │ └── strict_spec.rb │ │ │ ├── text_spec.rb │ │ │ ├── urls │ │ │ │ ├── git_spec.rb │ │ │ │ ├── git_strict_spec.rb │ │ │ │ └── pypi_spec.rb │ │ │ ├── urls_spec.rb │ │ │ ├── uses_from_macos_spec.rb │ │ │ ├── version_spec.rb │ │ │ └── zero_zero_zero_zero_spec.rb │ │ ├── sandbox_spec.rb │ │ ├── sbom_spec.rb │ │ ├── search_spec.rb │ │ ├── service_spec.rb │ │ ├── services │ │ │ ├── cli_spec.rb │ │ │ ├── commands │ │ │ │ ├── cleanup_spec.rb │ │ │ │ ├── info_spec.rb │ │ │ │ ├── list_spec.rb │ │ │ │ └── restart_spec.rb │ │ │ ├── formula_wrapper_spec.rb │ │ │ ├── formulae_spec.rb │ │ │ ├── system │ │ │ │ └── systemctl_spec.rb │ │ │ └── system_spec.rb │ │ ├── settings_spec.rb │ │ ├── simulate_system_spec.rb │ │ ├── software_spec_spec.rb │ │ ├── sorbet │ │ │ └── tapioca │ │ │ │ └── config_spec.rb │ │ ├── spec_helper.rb │ │ ├── style_spec.rb │ │ ├── support │ │ │ ├── extend │ │ │ │ └── cachable.rb │ │ │ ├── fixtures │ │ │ │ ├── bottles │ │ │ │ │ ├── testball_bottle-0.1.arm64_big_sur.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.arm64_linux.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.arm64_monterey.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.arm64_sequoia.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.arm64_sonoma.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.arm64_tahoe.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.arm64_ventura.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.armv6_linux.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.armv7l_linux.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.big_sur.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.catalina.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.el_capitan.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.high_sierra.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.intel_macintosh.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.mavericks.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.mojave.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.monterey.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.mountain_lion.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.sequoia.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.sierra.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.sonoma.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.tahoe.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.ventura.bottle.tar.gz │ │ │ │ │ ├── testball_bottle-0.1.x86_64_linux.bottle.tar.gz │ │ │ │ │ └── testball_bottle-0.1.yosemite.bottle.tar.gz │ │ │ │ ├── cask │ │ │ │ │ ├── AppWithBinary.zip │ │ │ │ │ ├── AppWithEmbeddedBinary.zip │ │ │ │ │ ├── AppWithManpage.zip │ │ │ │ │ ├── AppWithShellCompletion.zip │ │ │ │ │ ├── Casks │ │ │ │ │ │ ├── adobe-air.rb │ │ │ │ │ │ ├── adobe-illustrator.rb │ │ │ │ │ │ ├── appdir-interpolation.rb │ │ │ │ │ │ ├── arch-arm-only.rb │ │ │ │ │ │ ├── auto-updates.rb │ │ │ │ │ │ ├── bad-checksum.rb │ │ │ │ │ │ ├── bad-checksum2.rb │ │ │ │ │ │ ├── basic-cask.rb │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ └── with-depends-on-macos-string.rb │ │ │ │ │ │ ├── container-7z.rb │ │ │ │ │ │ ├── container-apfs-dmg.rb │ │ │ │ │ │ ├── container-bzip2.rb │ │ │ │ │ │ ├── container-cab.rb │ │ │ │ │ │ ├── container-dmg.rb │ │ │ │ │ │ ├── container-gzip.rb │ │ │ │ │ │ ├── container-pkg.rb │ │ │ │ │ │ ├── container-tar-gz.rb │ │ │ │ │ │ ├── container-xar.rb │ │ │ │ │ │ ├── devmate-with-livecheck.rb │ │ │ │ │ │ ├── devmate-without-livecheck.rb │ │ │ │ │ │ ├── everything.rb │ │ │ │ │ │ ├── generic-artifact-absolute-target.rb │ │ │ │ │ │ ├── generic-artifact-relative-target.rb │ │ │ │ │ │ ├── generic-artifact-user-relative-target.rb │ │ │ │ │ │ ├── hockeyapp-with-livecheck.rb │ │ │ │ │ │ ├── hockeyapp-without-livecheck.rb │ │ │ │ │ │ ├── installer-with-uninstall.rb │ │ │ │ │ │ ├── invalid-sha256.rb │ │ │ │ │ │ ├── invalid │ │ │ │ │ │ │ ├── conflicts-with-disabled-key.rb │ │ │ │ │ │ │ ├── invalid-conflicts-with-key.rb │ │ │ │ │ │ │ ├── invalid-depends-on-arch-value.rb │ │ │ │ │ │ │ ├── invalid-depends-on-key.rb │ │ │ │ │ │ │ ├── invalid-depends-on-macos-bad-release.rb │ │ │ │ │ │ │ ├── invalid-depends-on-macos-conflicting-forms.rb │ │ │ │ │ │ │ ├── invalid-generic-artifact-no-target.rb │ │ │ │ │ │ │ ├── invalid-header-format.rb │ │ │ │ │ │ │ ├── invalid-header-token-mismatch.rb │ │ │ │ │ │ │ ├── invalid-header-version.rb │ │ │ │ │ │ │ ├── invalid-manpage-no-section.rb │ │ │ │ │ │ │ ├── invalid-stage-only-conflict.rb │ │ │ │ │ │ │ ├── invalid-two-arch.rb │ │ │ │ │ │ │ ├── invalid-two-homepage.rb │ │ │ │ │ │ │ ├── invalid-two-url.rb │ │ │ │ │ │ │ └── invalid-two-version.rb │ │ │ │ │ │ ├── latest-with-auto-updates.rb │ │ │ │ │ │ ├── latest-with-livecheck-skip.rb │ │ │ │ │ │ ├── latest-with-livecheck.rb │ │ │ │ │ │ ├── latest.rb │ │ │ │ │ │ ├── livecheck │ │ │ │ │ │ │ ├── livecheck-deprecated-reference.rb │ │ │ │ │ │ │ ├── livecheck-deprecated.rb │ │ │ │ │ │ │ ├── livecheck-disabled-reference.rb │ │ │ │ │ │ │ ├── livecheck-disabled.rb │ │ │ │ │ │ │ ├── livecheck-extract-plist.rb │ │ │ │ │ │ │ ├── livecheck-installer-manual.rb │ │ │ │ │ │ │ ├── livecheck-skip-reference.rb │ │ │ │ │ │ │ ├── livecheck-skip.rb │ │ │ │ │ │ │ ├── livecheck-url-unversioned-reference.rb │ │ │ │ │ │ │ ├── livecheck-url-unversioned.rb │ │ │ │ │ │ │ ├── livecheck-version-latest-reference.rb │ │ │ │ │ │ │ └── livecheck-version-latest.rb │ │ │ │ │ │ ├── local-caffeine.rb │ │ │ │ │ │ ├── local-transmission-zip.rb │ │ │ │ │ │ ├── local-transmission.rb │ │ │ │ │ │ ├── many-artifacts.rb │ │ │ │ │ │ ├── many-renames.rb │ │ │ │ │ │ ├── missing-checksum.rb │ │ │ │ │ │ ├── missing-homepage.rb │ │ │ │ │ │ ├── missing-name.rb │ │ │ │ │ │ ├── missing-sha256.rb │ │ │ │ │ │ ├── missing-url.rb │ │ │ │ │ │ ├── missing-version.rb │ │ │ │ │ │ ├── multiple-versions.rb │ │ │ │ │ │ ├── naked-executable.rb │ │ │ │ │ │ ├── nested-app.rb │ │ │ │ │ │ ├── no-checksum.rb │ │ │ │ │ │ ├── no-dsl-version.rb │ │ │ │ │ │ ├── osdn-urls.rb │ │ │ │ │ │ ├── outdated │ │ │ │ │ │ │ ├── auto-updates.rb │ │ │ │ │ │ │ ├── bad-checksum.rb │ │ │ │ │ │ │ ├── bad-checksum2.rb │ │ │ │ │ │ │ ├── local-caffeine.rb │ │ │ │ │ │ │ ├── local-transmission-zip.rb │ │ │ │ │ │ │ ├── local-transmission.rb │ │ │ │ │ │ │ ├── renamed-app.rb │ │ │ │ │ │ │ ├── version-latest.rb │ │ │ │ │ │ │ └── will-fail-if-upgraded.rb │ │ │ │ │ │ ├── pkg-without-uninstall.rb │ │ │ │ │ │ ├── placeholders.rb │ │ │ │ │ │ ├── renamed-app.rb │ │ │ │ │ │ ├── sha256-arch.rb │ │ │ │ │ │ ├── sha256-for-empty-string.rb │ │ │ │ │ │ ├── sha256-os.rb │ │ │ │ │ │ ├── sourceforge-correct-url-format.rb │ │ │ │ │ │ ├── sourceforge-incorrect-url-format.rb │ │ │ │ │ │ ├── sourceforge-version-latest-correct-url-format.rb │ │ │ │ │ │ ├── sourceforge-with-livecheck.rb │ │ │ │ │ │ ├── stage-only.rb │ │ │ │ │ │ ├── test-opera-mail.rb │ │ │ │ │ │ ├── test-opera.rb │ │ │ │ │ │ ├── version-colon.rb │ │ │ │ │ │ ├── version-latest-string.rb │ │ │ │ │ │ ├── version-latest-with-checksum.rb │ │ │ │ │ │ ├── version-latest.rb │ │ │ │ │ │ ├── will-fail-if-upgraded.rb │ │ │ │ │ │ ├── with-allow-untrusted.rb │ │ │ │ │ │ ├── with-alt-target.rb │ │ │ │ │ │ ├── with-auto-updates.rb │ │ │ │ │ │ ├── with-autodetected-manpage-section.rb │ │ │ │ │ │ ├── with-binary.rb │ │ │ │ │ │ ├── with-caveats.rb │ │ │ │ │ │ ├── with-choices.rb │ │ │ │ │ │ ├── with-conditional-caveats.rb │ │ │ │ │ │ ├── with-conflicts-with.rb │ │ │ │ │ │ ├── with-depends-on-arch.rb │ │ │ │ │ │ ├── with-depends-on-cask-cyclic-helper.rb │ │ │ │ │ │ ├── with-depends-on-cask-cyclic.rb │ │ │ │ │ │ ├── with-depends-on-cask-multiple.rb │ │ │ │ │ │ ├── with-depends-on-cask.rb │ │ │ │ │ │ ├── with-depends-on-everything.rb │ │ │ │ │ │ ├── with-depends-on-formula-multiple.rb │ │ │ │ │ │ ├── with-depends-on-formula.rb │ │ │ │ │ │ ├── with-depends-on-macos-array.rb │ │ │ │ │ │ ├── with-depends-on-macos-comparison.rb │ │ │ │ │ │ ├── with-depends-on-macos-failure.rb │ │ │ │ │ │ ├── with-depends-on-macos-symbol.rb │ │ │ │ │ │ ├── with-embedded-binary.rb │ │ │ │ │ │ ├── with-generic-artifact.rb │ │ │ │ │ │ ├── with-installable.rb │ │ │ │ │ │ ├── with-installer-manual.rb │ │ │ │ │ │ ├── with-installer-script.rb │ │ │ │ │ │ ├── with-languages.rb │ │ │ │ │ │ ├── with-macosx-dir.rb │ │ │ │ │ │ ├── with-many-languages.rb │ │ │ │ │ │ ├── with-non-executable-binary.rb │ │ │ │ │ │ ├── with-pkgutil-zap.rb │ │ │ │ │ │ ├── with-postflight-multi.rb │ │ │ │ │ │ ├── with-postflight.rb │ │ │ │ │ │ ├── with-preflight-multi.rb │ │ │ │ │ │ ├── with-preflight.rb │ │ │ │ │ │ ├── with-shellcompletion-long.rb │ │ │ │ │ │ ├── with-shellcompletion.rb │ │ │ │ │ │ ├── with-suite.rb │ │ │ │ │ │ ├── with-two-apps-correct.rb │ │ │ │ │ │ ├── with-two-apps-subdir.rb │ │ │ │ │ │ ├── with-uninstall-delete.rb │ │ │ │ │ │ ├── with-uninstall-early-script.rb │ │ │ │ │ │ ├── with-uninstall-kext.rb │ │ │ │ │ │ ├── with-uninstall-launchctl-wildcard.rb │ │ │ │ │ │ ├── with-uninstall-launchctl.rb │ │ │ │ │ │ ├── with-uninstall-login-item.rb │ │ │ │ │ │ ├── with-uninstall-multi.rb │ │ │ │ │ │ ├── with-uninstall-pkgutil.rb │ │ │ │ │ │ ├── with-uninstall-postflight-multi.rb │ │ │ │ │ │ ├── with-uninstall-postflight.rb │ │ │ │ │ │ ├── with-uninstall-preflight-multi.rb │ │ │ │ │ │ ├── with-uninstall-preflight.rb │ │ │ │ │ │ ├── with-uninstall-quit.rb │ │ │ │ │ │ ├── with-uninstall-rmdir.rb │ │ │ │ │ │ ├── with-uninstall-script-app.rb │ │ │ │ │ │ ├── with-uninstall-script-user-relative.rb │ │ │ │ │ │ ├── with-uninstall-script.rb │ │ │ │ │ │ ├── with-uninstall-signal.rb │ │ │ │ │ │ ├── with-uninstall-trash.rb │ │ │ │ │ │ ├── with-zap-delete.rb │ │ │ │ │ │ ├── with-zap-early-script.rb │ │ │ │ │ │ ├── with-zap-kext.rb │ │ │ │ │ │ ├── with-zap-launchctl-wildcard.rb │ │ │ │ │ │ ├── with-zap-launchctl.rb │ │ │ │ │ │ ├── with-zap-login-item.rb │ │ │ │ │ │ ├── with-zap-multi.rb │ │ │ │ │ │ ├── with-zap-pkgutil.rb │ │ │ │ │ │ ├── with-zap-quit.rb │ │ │ │ │ │ ├── with-zap-rmdir.rb │ │ │ │ │ │ ├── with-zap-script.rb │ │ │ │ │ │ ├── with-zap-signal.rb │ │ │ │ │ │ ├── with-zap-trash.rb │ │ │ │ │ │ ├── with-zap.rb │ │ │ │ │ │ └── without-languages.rb │ │ │ │ │ ├── MyFancyApp.zip │ │ │ │ │ ├── MyFancyPkg.zip │ │ │ │ │ ├── NestedApp.dmg.zip │ │ │ │ │ ├── NewApp.app │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ └── NewApp │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ └── Caffeine.icns │ │ │ │ │ ├── caffeine-suite.zip │ │ │ │ │ ├── caffeine-with-plist.zip │ │ │ │ │ ├── caffeine.json │ │ │ │ │ ├── caffeine.zip │ │ │ │ │ ├── caffeines-subdir.zip │ │ │ │ │ ├── caffeines.zip │ │ │ │ │ ├── container-apfs.dmg │ │ │ │ │ ├── container.7z │ │ │ │ │ ├── container.air │ │ │ │ │ ├── container.bz2 │ │ │ │ │ ├── container.cab │ │ │ │ │ ├── container.dmg │ │ │ │ │ ├── container.gz │ │ │ │ │ ├── container.lzma │ │ │ │ │ ├── container.pkg │ │ │ │ │ ├── container.rar │ │ │ │ │ ├── container.sit │ │ │ │ │ ├── container.tar.gz │ │ │ │ │ ├── container.tar.xz.gpg │ │ │ │ │ ├── container.tar.zst │ │ │ │ │ ├── container.xar │ │ │ │ │ ├── container.xz │ │ │ │ │ ├── everything-with-variations.json │ │ │ │ │ ├── everything.json │ │ │ │ │ ├── naked_executable │ │ │ │ │ ├── naked_non_executable │ │ │ │ │ ├── new-app.tar.gz │ │ │ │ │ ├── old-app.tar.gz │ │ │ │ │ ├── transmission-2.61.dmg │ │ │ │ │ └── transmission-2.61.zip │ │ │ │ ├── cask_receipt.json │ │ │ │ ├── elf │ │ │ │ │ ├── c.elf │ │ │ │ │ ├── hello │ │ │ │ │ ├── hello_with_rpath │ │ │ │ │ ├── libforty.so.0 │ │ │ │ │ └── libhello.so.0 │ │ │ │ ├── failball.rb │ │ │ │ ├── failball_offline_install.rb │ │ │ │ ├── mach │ │ │ │ │ ├── a.out │ │ │ │ │ ├── fat.bundle │ │ │ │ │ ├── fat.dylib │ │ │ │ │ ├── i386.bundle │ │ │ │ │ ├── i386.dylib │ │ │ │ │ ├── x86_64.bundle │ │ │ │ │ └── x86_64.dylib │ │ │ │ ├── patches │ │ │ │ │ ├── noop-a.diff │ │ │ │ │ ├── noop-b.diff │ │ │ │ │ ├── noop-c.diff │ │ │ │ │ └── noop-d.diff │ │ │ │ ├── receipt.json │ │ │ │ ├── receipt_old.json │ │ │ │ ├── rubocop@x.x.x.rbi │ │ │ │ ├── sdks │ │ │ │ │ ├── big_sur │ │ │ │ │ │ └── MacOSX.sdk │ │ │ │ │ │ │ └── SDKSettings.json │ │ │ │ │ └── malformed │ │ │ │ │ │ └── MacOSX10.15.sdk │ │ │ │ │ │ └── SDKSettings.json │ │ │ │ ├── tarballs │ │ │ │ │ ├── testball-0.1-linux.tbz │ │ │ │ │ ├── testball-0.1-patches.tgz │ │ │ │ │ ├── testball-0.1.tbz │ │ │ │ │ ├── testball2-0.1-linux.tbz │ │ │ │ │ ├── testball2-0.1-patches.tgz │ │ │ │ │ └── testball2-0.1.tbz │ │ │ │ ├── test.diff │ │ │ │ ├── test.dmg.gz │ │ │ │ ├── test.eps │ │ │ │ ├── test.epub │ │ │ │ ├── test.flac │ │ │ │ ├── test.gif │ │ │ │ ├── test.ico │ │ │ │ ├── test.jar │ │ │ │ ├── test.jpg │ │ │ │ ├── test.lha │ │ │ │ ├── test.lz │ │ │ │ ├── test.m4a │ │ │ │ ├── test.mp3 │ │ │ │ ├── test.mp4 │ │ │ │ ├── test.pcap │ │ │ │ ├── test.pdf │ │ │ │ ├── test.png │ │ │ │ ├── test.ps │ │ │ │ ├── test.svg │ │ │ │ ├── test.tiff │ │ │ │ ├── test.wav │ │ │ │ ├── testball.rb │ │ │ │ ├── testball_bottle.rb │ │ │ │ ├── testball_bottle_cellar.rb │ │ │ │ ├── third-party │ │ │ │ │ └── Casks │ │ │ │ │ │ ├── pharo.rb │ │ │ │ │ │ └── third-party-cask.rb │ │ │ │ └── updater_fixture.yaml │ │ │ ├── helper │ │ │ │ ├── cask.rb │ │ │ │ ├── cask │ │ │ │ │ ├── install_helper.rb │ │ │ │ │ └── never_sudo_system_command.rb │ │ │ │ ├── cmd │ │ │ │ │ └── brew-verify-undefined.rb │ │ │ │ ├── files.rb │ │ │ │ ├── fixtures.rb │ │ │ │ ├── formula.rb │ │ │ │ ├── integration_mocks.rb │ │ │ │ ├── mktmpdir.rb │ │ │ │ └── spec │ │ │ │ │ ├── shared_context │ │ │ │ │ ├── homebrew_cask.rb │ │ │ │ │ └── integration_test.rb │ │ │ │ │ └── shared_examples │ │ │ │ │ └── formulae_exist.rb │ │ │ ├── lib │ │ │ │ └── startup │ │ │ │ │ └── config.rb │ │ │ └── quiet_progress_formatter.rb │ │ ├── system_command_result_spec.rb │ │ ├── system_command_spec.rb │ │ ├── tab_spec.rb │ │ ├── tap_auditor_spec.rb │ │ ├── tap_spec.rb │ │ ├── test_bot │ │ │ ├── setup_spec.rb │ │ │ └── step_spec.rb │ │ ├── test_runner_formula_spec.rb │ │ ├── uninstall_spec.rb │ │ ├── unpack_strategy │ │ │ ├── bazaar_spec.rb │ │ │ ├── bzip2_spec.rb │ │ │ ├── cvs_spec.rb │ │ │ ├── directory_spec.rb │ │ │ ├── dmg_spec.rb │ │ │ ├── git_spec.rb │ │ │ ├── gzip_spec.rb │ │ │ ├── jar_spec.rb │ │ │ ├── lha_spec.rb │ │ │ ├── lzip_spec.rb │ │ │ ├── mercurial_spec.rb │ │ │ ├── p7zip_spec.rb │ │ │ ├── rar_spec.rb │ │ │ ├── shared_examples.rb │ │ │ ├── subversion_spec.rb │ │ │ ├── tar_spec.rb │ │ │ ├── uncompressed_spec.rb │ │ │ ├── xar_spec.rb │ │ │ ├── xz_spec.rb │ │ │ ├── zip_spec.rb │ │ │ └── zstd_spec.rb │ │ ├── unpack_strategy_spec.rb │ │ ├── utils │ │ │ ├── analytics_spec.rb │ │ │ ├── ast │ │ │ │ ├── ast_spec.rb │ │ │ │ └── formula_ast_spec.rb │ │ │ ├── autoremove_spec.rb │ │ │ ├── backtrace_spec.rb │ │ │ ├── bottles │ │ │ │ ├── bottles_spec.rb │ │ │ │ ├── collector_spec.rb │ │ │ │ └── tag_spec.rb │ │ │ ├── cpan_spec.rb │ │ │ ├── curl_spec.rb │ │ │ ├── fork_spec.rb │ │ │ ├── git_repository_spec.rb │ │ │ ├── git_spec.rb │ │ │ ├── github │ │ │ │ └── actions_spec.rb │ │ │ ├── github_spec.rb │ │ │ ├── gzip_spec.rb │ │ │ ├── inreplace_spec.rb │ │ │ ├── linkage_spec.rb │ │ │ ├── output_spec.rb │ │ │ ├── path_spec.rb │ │ │ ├── popen_spec.rb │ │ │ ├── pypi_spec.rb │ │ │ ├── repology_spec.rb │ │ │ ├── ruby_check_version_script_spec.rb │ │ │ ├── service_spec.rb │ │ │ ├── shared_audits_spec.rb │ │ │ ├── shell_spec.rb │ │ │ ├── spdx_spec.rb │ │ │ ├── string_inreplace_extension_spec.rb │ │ │ ├── svn_spec.rb │ │ │ ├── tar_spec.rb │ │ │ ├── timer_spec.rb │ │ │ ├── topological_hash_spec.rb │ │ │ ├── tty_spec.rb │ │ │ └── user_spec.rb │ │ ├── utils_spec.rb │ │ ├── version │ │ │ └── parser_spec.rb │ │ └── version_spec.rb │ ├── test_bot.rb │ ├── test_bot.rbi │ ├── test_bot │ │ ├── bottles_fetch.rb │ │ ├── cleanup_after.rb │ │ ├── cleanup_before.rb │ │ ├── formulae.rb │ │ ├── formulae_dependents.rb │ │ ├── formulae_detect.rb │ │ ├── junit.rb │ │ ├── setup.rb │ │ ├── step.rb │ │ ├── tap_syntax.rb │ │ ├── test.rb │ │ ├── test_cleanup.rb │ │ ├── test_formulae.rb │ │ ├── test_formulae.rbi │ │ ├── test_runner.rb │ │ └── test_runner.rbi │ ├── test_runner_formula.rb │ ├── uninstall.rb │ ├── unlink.rb │ ├── unpack_strategy.rb │ ├── unpack_strategy │ │ ├── air.rb │ │ ├── bazaar.rb │ │ ├── bzip2.rb │ │ ├── cab.rb │ │ ├── compress.rb │ │ ├── cvs.rb │ │ ├── directory.rb │ │ ├── dmg.rb │ │ ├── executable.rb │ │ ├── fossil.rb │ │ ├── generic_unar.rb │ │ ├── git.rb │ │ ├── gzip.rb │ │ ├── jar.rb │ │ ├── lha.rb │ │ ├── lua_rock.rb │ │ ├── lzip.rb │ │ ├── lzma.rb │ │ ├── mercurial.rb │ │ ├── microsoft_office_xml.rb │ │ ├── otf.rb │ │ ├── p7zip.rb │ │ ├── pax.rb │ │ ├── pkg.rb │ │ ├── rar.rb │ │ ├── self_extracting_executable.rb │ │ ├── sit.rb │ │ ├── subversion.rb │ │ ├── tar.rb │ │ ├── ttf.rb │ │ ├── uncompressed.rb │ │ ├── xar.rb │ │ ├── xz.rb │ │ ├── zip.rb │ │ └── zstd.rb │ ├── unversioned_cask_checker.rb │ ├── upgrade.rb │ ├── url.rb │ ├── utils.rb │ ├── utils │ │ ├── analytics.rb │ │ ├── analytics.sh │ │ ├── ast.rb │ │ ├── ast.rbi │ │ ├── attestation.rb │ │ ├── autoremove.rb │ │ ├── backtrace.rb │ │ ├── bash │ │ │ └── brew-sh-prompt-bashrc.bash │ │ ├── bottles.rb │ │ ├── cpan.rb │ │ ├── curl.rb │ │ ├── fork.rb │ │ ├── formatter.rb │ │ ├── gems.rb │ │ ├── gems.rbi │ │ ├── git.rb │ │ ├── git_repository.rb │ │ ├── github.rb │ │ ├── github │ │ │ ├── actions.rb │ │ │ ├── api.rb │ │ │ └── artifacts.rb │ │ ├── gzip.rb │ │ ├── helpers.sh │ │ ├── inreplace.rb │ │ ├── link.rb │ │ ├── linkage.rb │ │ ├── lock.sh │ │ ├── lock_sh │ │ │ ├── ruby_check_version.rb │ │ │ └── ruby_lock_file_descriptor.rb │ │ ├── output.rb │ │ ├── path.rb │ │ ├── pid_path.rb │ │ ├── popen.rb │ │ ├── pypi.rb │ │ ├── repology.rb │ │ ├── rubocop.rb │ │ ├── ruby.sh │ │ ├── ruby_check_version_script.rb │ │ ├── ruby_sh │ │ │ └── ruby_gem_version.rb │ │ ├── service.rb │ │ ├── shared_audits.rb │ │ ├── shebang.rb │ │ ├── shell.rb │ │ ├── shfmt.sh │ │ ├── socket.rb │ │ ├── spdx.rb │ │ ├── string_inreplace_extension.rb │ │ ├── svn.rb │ │ ├── tar.rb │ │ ├── timer.rb │ │ ├── topological_hash.rb │ │ ├── tty.rb │ │ ├── uid.rb │ │ ├── user.rb │ │ ├── wrapper.sh │ │ └── zsh │ │ │ └── brew-sh-prompt-zshrc.zsh │ ├── vendor │ │ ├── bundle │ │ │ ├── bundler │ │ │ │ └── setup.rb │ │ │ └── ruby │ │ │ │ └── 3.4.0 │ │ │ │ └── gems │ │ │ │ ├── addressable-2.8.8 │ │ │ │ ├── LICENSE.txt │ │ │ │ └── lib │ │ │ │ │ ├── addressable.rb │ │ │ │ │ └── addressable │ │ │ │ │ ├── idna.rb │ │ │ │ │ ├── idna │ │ │ │ │ ├── native.rb │ │ │ │ │ └── pure.rb │ │ │ │ │ ├── template.rb │ │ │ │ │ ├── uri.rb │ │ │ │ │ └── version.rb │ │ │ │ ├── base64-0.3.0 │ │ │ │ └── lib │ │ │ │ │ └── base64.rb │ │ │ │ ├── bindata-2.5.1 │ │ │ │ ├── LICENSE │ │ │ │ └── lib │ │ │ │ │ ├── bindata.rb │ │ │ │ │ └── bindata │ │ │ │ │ ├── alignment.rb │ │ │ │ │ ├── array.rb │ │ │ │ │ ├── base.rb │ │ │ │ │ ├── base_primitive.rb │ │ │ │ │ ├── bits.rb │ │ │ │ │ ├── buffer.rb │ │ │ │ │ ├── choice.rb │ │ │ │ │ ├── count_bytes_remaining.rb │ │ │ │ │ ├── delayed_io.rb │ │ │ │ │ ├── dsl.rb │ │ │ │ │ ├── float.rb │ │ │ │ │ ├── framework.rb │ │ │ │ │ ├── int.rb │ │ │ │ │ ├── io.rb │ │ │ │ │ ├── lazy.rb │ │ │ │ │ ├── name.rb │ │ │ │ │ ├── params.rb │ │ │ │ │ ├── primitive.rb │ │ │ │ │ ├── record.rb │ │ │ │ │ ├── registry.rb │ │ │ │ │ ├── rest.rb │ │ │ │ │ ├── sanitize.rb │ │ │ │ │ ├── section.rb │ │ │ │ │ ├── skip.rb │ │ │ │ │ ├── string.rb │ │ │ │ │ ├── stringz.rb │ │ │ │ │ ├── struct.rb │ │ │ │ │ ├── trace.rb │ │ │ │ │ ├── transform │ │ │ │ │ ├── brotli.rb │ │ │ │ │ ├── lz4.rb │ │ │ │ │ ├── lzma.rb │ │ │ │ │ ├── xor.rb │ │ │ │ │ ├── xz.rb │ │ │ │ │ ├── zlib.rb │ │ │ │ │ └── zstd.rb │ │ │ │ │ ├── uint8_array.rb │ │ │ │ │ ├── version.rb │ │ │ │ │ ├── virtual.rb │ │ │ │ │ └── warnings.rb │ │ │ │ ├── concurrent-ruby-1.3.5 │ │ │ │ ├── LICENSE.txt │ │ │ │ └── lib │ │ │ │ │ └── concurrent-ruby │ │ │ │ │ ├── concurrent-ruby.rb │ │ │ │ │ ├── concurrent.rb │ │ │ │ │ └── concurrent │ │ │ │ │ ├── agent.rb │ │ │ │ │ ├── array.rb │ │ │ │ │ ├── async.rb │ │ │ │ │ ├── atom.rb │ │ │ │ │ ├── atomic │ │ │ │ │ ├── atomic_boolean.rb │ │ │ │ │ ├── atomic_fixnum.rb │ │ │ │ │ ├── atomic_markable_reference.rb │ │ │ │ │ ├── atomic_reference.rb │ │ │ │ │ ├── count_down_latch.rb │ │ │ │ │ ├── cyclic_barrier.rb │ │ │ │ │ ├── event.rb │ │ │ │ │ ├── fiber_local_var.rb │ │ │ │ │ ├── java_count_down_latch.rb │ │ │ │ │ ├── locals.rb │ │ │ │ │ ├── lock_local_var.rb │ │ │ │ │ ├── mutex_atomic_boolean.rb │ │ │ │ │ ├── mutex_atomic_fixnum.rb │ │ │ │ │ ├── mutex_count_down_latch.rb │ │ │ │ │ ├── mutex_semaphore.rb │ │ │ │ │ ├── read_write_lock.rb │ │ │ │ │ ├── reentrant_read_write_lock.rb │ │ │ │ │ ├── semaphore.rb │ │ │ │ │ └── thread_local_var.rb │ │ │ │ │ ├── atomic_reference │ │ │ │ │ ├── atomic_direct_update.rb │ │ │ │ │ ├── mutex_atomic.rb │ │ │ │ │ └── numeric_cas_wrapper.rb │ │ │ │ │ ├── atomics.rb │ │ │ │ │ ├── collection │ │ │ │ │ ├── copy_on_notify_observer_set.rb │ │ │ │ │ ├── copy_on_write_observer_set.rb │ │ │ │ │ ├── java_non_concurrent_priority_queue.rb │ │ │ │ │ ├── lock_free_stack.rb │ │ │ │ │ ├── map │ │ │ │ │ │ ├── mri_map_backend.rb │ │ │ │ │ │ ├── non_concurrent_map_backend.rb │ │ │ │ │ │ ├── synchronized_map_backend.rb │ │ │ │ │ │ └── truffleruby_map_backend.rb │ │ │ │ │ ├── non_concurrent_priority_queue.rb │ │ │ │ │ └── ruby_non_concurrent_priority_queue.rb │ │ │ │ │ ├── concern │ │ │ │ │ ├── deprecation.rb │ │ │ │ │ ├── dereferenceable.rb │ │ │ │ │ ├── logging.rb │ │ │ │ │ ├── obligation.rb │ │ │ │ │ └── observable.rb │ │ │ │ │ ├── concurrent_ruby.jar │ │ │ │ │ ├── configuration.rb │ │ │ │ │ ├── constants.rb │ │ │ │ │ ├── dataflow.rb │ │ │ │ │ ├── delay.rb │ │ │ │ │ ├── errors.rb │ │ │ │ │ ├── exchanger.rb │ │ │ │ │ ├── executor │ │ │ │ │ ├── abstract_executor_service.rb │ │ │ │ │ ├── cached_thread_pool.rb │ │ │ │ │ ├── executor_service.rb │ │ │ │ │ ├── fixed_thread_pool.rb │ │ │ │ │ ├── immediate_executor.rb │ │ │ │ │ ├── indirect_immediate_executor.rb │ │ │ │ │ ├── java_executor_service.rb │ │ │ │ │ ├── java_single_thread_executor.rb │ │ │ │ │ ├── java_thread_pool_executor.rb │ │ │ │ │ ├── ruby_executor_service.rb │ │ │ │ │ ├── ruby_single_thread_executor.rb │ │ │ │ │ ├── ruby_thread_pool_executor.rb │ │ │ │ │ ├── safe_task_executor.rb │ │ │ │ │ ├── serial_executor_service.rb │ │ │ │ │ ├── serialized_execution.rb │ │ │ │ │ ├── serialized_execution_delegator.rb │ │ │ │ │ ├── simple_executor_service.rb │ │ │ │ │ ├── single_thread_executor.rb │ │ │ │ │ ├── thread_pool_executor.rb │ │ │ │ │ └── timer_set.rb │ │ │ │ │ ├── executors.rb │ │ │ │ │ ├── future.rb │ │ │ │ │ ├── hash.rb │ │ │ │ │ ├── immutable_struct.rb │ │ │ │ │ ├── ivar.rb │ │ │ │ │ ├── map.rb │ │ │ │ │ ├── maybe.rb │ │ │ │ │ ├── mutable_struct.rb │ │ │ │ │ ├── mvar.rb │ │ │ │ │ ├── options.rb │ │ │ │ │ ├── promise.rb │ │ │ │ │ ├── promises.rb │ │ │ │ │ ├── re_include.rb │ │ │ │ │ ├── scheduled_task.rb │ │ │ │ │ ├── set.rb │ │ │ │ │ ├── settable_struct.rb │ │ │ │ │ ├── synchronization.rb │ │ │ │ │ ├── synchronization │ │ │ │ │ ├── abstract_lockable_object.rb │ │ │ │ │ ├── abstract_object.rb │ │ │ │ │ ├── abstract_struct.rb │ │ │ │ │ ├── condition.rb │ │ │ │ │ ├── full_memory_barrier.rb │ │ │ │ │ ├── jruby_lockable_object.rb │ │ │ │ │ ├── lock.rb │ │ │ │ │ ├── lockable_object.rb │ │ │ │ │ ├── mutex_lockable_object.rb │ │ │ │ │ ├── object.rb │ │ │ │ │ ├── safe_initialization.rb │ │ │ │ │ └── volatile.rb │ │ │ │ │ ├── thread_safe │ │ │ │ │ ├── synchronized_delegator.rb │ │ │ │ │ ├── util.rb │ │ │ │ │ └── util │ │ │ │ │ │ ├── adder.rb │ │ │ │ │ │ ├── data_structures.rb │ │ │ │ │ │ ├── power_of_two_tuple.rb │ │ │ │ │ │ ├── striped64.rb │ │ │ │ │ │ ├── volatile.rb │ │ │ │ │ │ └── xor_shift_random.rb │ │ │ │ │ ├── timer_task.rb │ │ │ │ │ ├── tuple.rb │ │ │ │ │ ├── tvar.rb │ │ │ │ │ ├── utility │ │ │ │ │ ├── engine.rb │ │ │ │ │ ├── monotonic_time.rb │ │ │ │ │ ├── native_extension_loader.rb │ │ │ │ │ ├── native_integer.rb │ │ │ │ │ └── processor_counter.rb │ │ │ │ │ └── version.rb │ │ │ │ ├── elftools-1.3.1 │ │ │ │ └── lib │ │ │ │ │ ├── elftools.rb │ │ │ │ │ └── elftools │ │ │ │ │ ├── constants.rb │ │ │ │ │ ├── dynamic.rb │ │ │ │ │ ├── elf_file.rb │ │ │ │ │ ├── exceptions.rb │ │ │ │ │ ├── lazy_array.rb │ │ │ │ │ ├── note.rb │ │ │ │ │ ├── sections │ │ │ │ │ ├── dynamic_section.rb │ │ │ │ │ ├── note_section.rb │ │ │ │ │ ├── null_section.rb │ │ │ │ │ ├── relocation_section.rb │ │ │ │ │ ├── section.rb │ │ │ │ │ ├── sections.rb │ │ │ │ │ ├── str_tab_section.rb │ │ │ │ │ └── sym_tab_section.rb │ │ │ │ │ ├── segments │ │ │ │ │ ├── dynamic_segment.rb │ │ │ │ │ ├── interp_segment.rb │ │ │ │ │ ├── load_segment.rb │ │ │ │ │ ├── note_segment.rb │ │ │ │ │ ├── segment.rb │ │ │ │ │ └── segments.rb │ │ │ │ │ ├── structs.rb │ │ │ │ │ ├── util.rb │ │ │ │ │ └── version.rb │ │ │ │ ├── patchelf-1.5.2 │ │ │ │ ├── LICENSE │ │ │ │ └── lib │ │ │ │ │ ├── patchelf.rb │ │ │ │ │ └── patchelf │ │ │ │ │ ├── alt_saver.rb │ │ │ │ │ ├── cli.rb │ │ │ │ │ ├── exceptions.rb │ │ │ │ │ ├── helper.rb │ │ │ │ │ ├── logger.rb │ │ │ │ │ ├── mm.rb │ │ │ │ │ ├── patcher.rb │ │ │ │ │ ├── saver.rb │ │ │ │ │ └── version.rb │ │ │ │ ├── plist-3.7.2 │ │ │ │ ├── LICENSE.txt │ │ │ │ └── lib │ │ │ │ │ ├── plist.rb │ │ │ │ │ └── plist │ │ │ │ │ ├── generator.rb │ │ │ │ │ ├── parser.rb │ │ │ │ │ └── version.rb │ │ │ │ ├── public_suffix-7.0.0 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── data │ │ │ │ │ └── list.txt │ │ │ │ └── lib │ │ │ │ │ ├── public_suffix.rb │ │ │ │ │ └── public_suffix │ │ │ │ │ ├── domain.rb │ │ │ │ │ ├── errors.rb │ │ │ │ │ ├── list.rb │ │ │ │ │ ├── rule.rb │ │ │ │ │ └── version.rb │ │ │ │ ├── ruby-macho-4.1.0 │ │ │ │ ├── LICENSE │ │ │ │ └── lib │ │ │ │ │ ├── macho.rb │ │ │ │ │ └── macho │ │ │ │ │ ├── exceptions.rb │ │ │ │ │ ├── fat_file.rb │ │ │ │ │ ├── headers.rb │ │ │ │ │ ├── load_commands.rb │ │ │ │ │ ├── macho_file.rb │ │ │ │ │ ├── sections.rb │ │ │ │ │ ├── structure.rb │ │ │ │ │ ├── tools.rb │ │ │ │ │ ├── utils.rb │ │ │ │ │ └── view.rb │ │ │ │ ├── sorbet-runtime-0.6.12798 │ │ │ │ └── lib │ │ │ │ │ ├── sorbet-runtime.rb │ │ │ │ │ └── types │ │ │ │ │ ├── _types.rb │ │ │ │ │ ├── abstract_utils.rb │ │ │ │ │ ├── boolean.rb │ │ │ │ │ ├── compatibility_patches.rb │ │ │ │ │ ├── configuration.rb │ │ │ │ │ ├── enum.rb │ │ │ │ │ ├── generic.rb │ │ │ │ │ ├── helpers.rb │ │ │ │ │ ├── private │ │ │ │ │ ├── abstract │ │ │ │ │ │ ├── data.rb │ │ │ │ │ │ ├── declare.rb │ │ │ │ │ │ ├── hooks.rb │ │ │ │ │ │ └── validate.rb │ │ │ │ │ ├── caller_utils.rb │ │ │ │ │ ├── casts.rb │ │ │ │ │ ├── class_utils.rb │ │ │ │ │ ├── decl_state.rb │ │ │ │ │ ├── final.rb │ │ │ │ │ ├── methods │ │ │ │ │ │ ├── _methods.rb │ │ │ │ │ │ ├── call_validation.rb │ │ │ │ │ │ ├── call_validation_2_7.rb │ │ │ │ │ │ ├── decl_builder.rb │ │ │ │ │ │ ├── modes.rb │ │ │ │ │ │ ├── signature.rb │ │ │ │ │ │ └── signature_validation.rb │ │ │ │ │ ├── mixins │ │ │ │ │ │ └── mixins.rb │ │ │ │ │ ├── retry.rb │ │ │ │ │ ├── runtime_levels.rb │ │ │ │ │ ├── sealed.rb │ │ │ │ │ └── types │ │ │ │ │ │ ├── not_typed.rb │ │ │ │ │ │ ├── simple_pair_union.rb │ │ │ │ │ │ ├── string_holder.rb │ │ │ │ │ │ ├── type_alias.rb │ │ │ │ │ │ └── void.rb │ │ │ │ │ ├── props │ │ │ │ │ ├── _props.rb │ │ │ │ │ ├── constructor.rb │ │ │ │ │ ├── custom_type.rb │ │ │ │ │ ├── decorator.rb │ │ │ │ │ ├── errors.rb │ │ │ │ │ ├── generated_code_validation.rb │ │ │ │ │ ├── has_lazily_specialized_methods.rb │ │ │ │ │ ├── optional.rb │ │ │ │ │ ├── plugin.rb │ │ │ │ │ ├── pretty_printable.rb │ │ │ │ │ ├── private │ │ │ │ │ │ ├── apply_default.rb │ │ │ │ │ │ ├── deserializer_generator.rb │ │ │ │ │ │ ├── parser.rb │ │ │ │ │ │ ├── serde_transform.rb │ │ │ │ │ │ ├── serializer_generator.rb │ │ │ │ │ │ └── setter_factory.rb │ │ │ │ │ ├── serializable.rb │ │ │ │ │ ├── type_validation.rb │ │ │ │ │ ├── utils.rb │ │ │ │ │ └── weak_constructor.rb │ │ │ │ │ ├── sig.rb │ │ │ │ │ ├── struct.rb │ │ │ │ │ ├── types │ │ │ │ │ ├── anything.rb │ │ │ │ │ ├── attached_class.rb │ │ │ │ │ ├── base.rb │ │ │ │ │ ├── class_of.rb │ │ │ │ │ ├── enum.rb │ │ │ │ │ ├── fixed_array.rb │ │ │ │ │ ├── fixed_hash.rb │ │ │ │ │ ├── intersection.rb │ │ │ │ │ ├── noreturn.rb │ │ │ │ │ ├── proc.rb │ │ │ │ │ ├── self_type.rb │ │ │ │ │ ├── simple.rb │ │ │ │ │ ├── t_enum.rb │ │ │ │ │ ├── type_member.rb │ │ │ │ │ ├── type_parameter.rb │ │ │ │ │ ├── type_template.rb │ │ │ │ │ ├── type_variable.rb │ │ │ │ │ ├── typed_array.rb │ │ │ │ │ ├── typed_class.rb │ │ │ │ │ ├── typed_enumerable.rb │ │ │ │ │ ├── typed_enumerator.rb │ │ │ │ │ ├── typed_enumerator_chain.rb │ │ │ │ │ ├── typed_enumerator_lazy.rb │ │ │ │ │ ├── typed_hash.rb │ │ │ │ │ ├── typed_module.rb │ │ │ │ │ ├── typed_range.rb │ │ │ │ │ ├── typed_set.rb │ │ │ │ │ ├── union.rb │ │ │ │ │ └── untyped.rb │ │ │ │ │ └── utils.rb │ │ │ │ └── warning-1.5.0 │ │ │ │ ├── MIT-LICENSE │ │ │ │ └── lib │ │ │ │ └── warning.rb │ │ ├── gems │ │ │ ├── mechanize │ │ │ └── mechanize-2.14.0 │ │ │ │ ├── LICENSE.txt │ │ │ │ └── lib │ │ │ │ └── mechanize │ │ │ │ ├── http │ │ │ │ └── content_disposition_parser.rb │ │ │ │ └── version.rb │ │ ├── portable-ruby-arm64-darwin │ │ ├── portable-ruby-arm64-linux │ │ ├── portable-ruby-version │ │ ├── portable-ruby-x86_64-darwin │ │ └── portable-ruby-x86_64-linux │ ├── version.rb │ ├── version │ │ └── parser.rb │ ├── warnings.rb │ └── yard │ │ ├── docstring_parser.rb │ │ └── templates │ │ └── default │ │ ├── docstring │ │ └── html │ │ │ ├── internal.erb │ │ │ ├── private.erb │ │ │ └── setup.rb │ │ ├── layout │ │ └── html │ │ │ └── footer.erb │ │ └── module │ │ └── html │ │ └── item_summary.erb └── README.md ├── README.md ├── bin └── brew ├── completions ├── README.md ├── bash │ └── brew ├── fish │ └── brew.fish ├── internal_commands_list.txt └── zsh │ └── _brew ├── docs ├── .mdl_ruleset.rb ├── .mdl_style.rb ├── .mdlrc ├── .rubocop.yml ├── .ruby-version ├── Acceptable-Casks.md ├── Acceptable-Formulae.md ├── Adding-Software-to-Homebrew.md ├── Analytics.md ├── Autobump.md ├── Bottles.md ├── Brew-Bundle-and-Brewfile.md ├── Brew-Livecheck.md ├── BrewTestBot-For-Maintainers.md ├── BrewTestBot.md ├── Brewfile ├── Building-Against-Non-Homebrew-Dependencies.md ├── C++-Standard-Libraries.md ├── CNAME ├── Cask-Cookbook.md ├── Checksum_Deprecation.md ├── Command-Not-Found.md ├── Common-Issues-for-Core-Contributors.md ├── Common-Issues.md ├── Creating-a-Homebrew-Issue.md ├── Custom-GCC-and-cross-compilers.md ├── Deprecating-Disabling-and-Removing-Casks.md ├── Deprecating-Disabling-and-Removing-Formulae.md ├── Expense-and-Reimbursement-Policy.md ├── External-Commands.md ├── FAQ.md ├── Formula-Cookbook.md ├── Gemfile ├── Gems,-Eggs-and-Perl-Modules.md ├── Homebrew-Governance-Archives.md ├── Homebrew-Governance.md ├── Homebrew-Leadership-Responsibilities.md ├── Homebrew-and-Java.md ├── Homebrew-and-Python.md ├── Homebrew-brew-Maintainer-Guide.md ├── Homebrew-homebrew-cask-Maintainer-Guide.md ├── Homebrew-homebrew-core-Maintainer-Guide.md ├── Homebrew-on-Linux.md ├── How-To-Open-a-Homebrew-Pull-Request.md ├── How-To-Organise-the-AGM.md ├── How-to-Build-Software-Outside-Homebrew-with-Homebrew-keg-only-Dependencies.md ├── How-to-Create-and-Maintain-a-Tap.md ├── Installation.md ├── Interesting-Taps-and-Forks.md ├── Kickstarter-Supporters.md ├── License-Guidelines.md ├── Linux-CI.md ├── MCP-Server.md ├── Maintainer-Guidelines.md ├── Maintainer-Stipends-and-Grants.md ├── Maintainers-Avoiding-Burnout.md ├── Manpage.md ├── Migrating-A-Formula-To-A-Tap.md ├── New-Maintainer-Checklist.md ├── Node-for-Formula-Authors.md ├── Prose-Style-Guidelines.md ├── Python-for-Formula-Authors.md ├── Querying-Brew.md ├── README.md ├── Rakefile ├── Releases.md ├── Rename-A-Formula.md ├── Reproducible-Builds.md ├── Shell-Completion.md ├── Support-Tiers.md ├── Taps.md ├── Tips-and-Tricks.md ├── Troubleshooting.md ├── Typechecking.md ├── Updating-Software-in-Homebrew.md ├── Versions.md ├── Xcode.md ├── _config.yml ├── assets │ └── img │ │ └── docs │ │ ├── brew-test-bot-failed-pr.png │ │ ├── brew-test-bot-passed-pr.png │ │ ├── brew-test-bot-triggered-pr.png │ │ ├── gatekeeper-unidentified-message.png │ │ ├── gatekeeper-unidentified-open.png │ │ ├── right-click-choose-open.png │ │ └── sparkle-test-app-software-update.png ├── bin │ └── jekyll ├── docs_rubocop_style.yml ├── governance │ ├── 2019-membership.md │ ├── 2019-moss-track-iii-grant-nomination.md │ ├── 2019-plc-minutes.md │ ├── 2020-membership.md │ ├── 2020-plc-minutes.md │ ├── 2021-agm-minutes.md │ ├── 2021-egm-minutes.md │ ├── 2021-membership.md │ ├── 2021-plc-minutes.md │ ├── 2022-agm-minutes.md │ ├── 2022-membership.md │ ├── 2023-agm-minutes.md │ └── 2024-agm-minutes.md ├── index.md ├── robots.txt └── vale-styles │ └── Homebrew │ ├── Abbreviations.yml │ ├── OxfordComma.yml │ ├── Pronouns.yml │ ├── README.md │ ├── Spacing.yml │ ├── Terms.yml │ ├── Titles.yml │ └── Trademarks.yml ├── manpages ├── README.md └── brew.1 └── package ├── Distribution.xml ├── resources ├── CONCLUSION.rtf ├── Homebrew.png └── WELCOME.rtf └── scripts ├── postinstall └── preinstall /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.cursor/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.cursor/hooks.json -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/on-create-command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.devcontainer/on-create-command.sh -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actionlint-matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/actionlint-matcher.json -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/autogenerated-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/autogenerated-files.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/doctor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/doctor.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/sbom.yml -------------------------------------------------------------------------------- /.github/workflows/sorbet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/sorbet.yml -------------------------------------------------------------------------------- /.github/workflows/spdx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/spdx.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/stale-issues.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/vendor-gems.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/vendor-gems.yml -------------------------------------------------------------------------------- /.github/workflows/vendor-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/workflows/vendor-version.yml -------------------------------------------------------------------------------- /.github/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.github/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.gitignore -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.sublime/homebrew.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.sublime/homebrew.sublime-project -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.vale.ini -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/ruby-lsp-activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.vscode/ruby-lsp-activate.sh -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Library/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/.rubocop.yml -------------------------------------------------------------------------------- /Library/Homebrew/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/.bundle/config -------------------------------------------------------------------------------- /Library/Homebrew/.rspec_parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/.rspec_parallel -------------------------------------------------------------------------------- /Library/Homebrew/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/.rubocop.yml -------------------------------------------------------------------------------- /Library/Homebrew/.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.7 2 | -------------------------------------------------------------------------------- /Library/Homebrew/.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/.simplecov -------------------------------------------------------------------------------- /Library/Homebrew/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/.yardopts -------------------------------------------------------------------------------- /Library/Homebrew/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/Gemfile -------------------------------------------------------------------------------- /Library/Homebrew/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/Gemfile.lock -------------------------------------------------------------------------------- /Library/Homebrew/PATH.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/PATH.rb -------------------------------------------------------------------------------- /Library/Homebrew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/README.md -------------------------------------------------------------------------------- /Library/Homebrew/abstract_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/abstract_command.rb -------------------------------------------------------------------------------- /Library/Homebrew/aliases/alias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/aliases/alias.rb -------------------------------------------------------------------------------- /Library/Homebrew/aliases/aliases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/aliases/aliases.rb -------------------------------------------------------------------------------- /Library/Homebrew/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/api.rb -------------------------------------------------------------------------------- /Library/Homebrew/api/analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/api/analytics.rb -------------------------------------------------------------------------------- /Library/Homebrew/api/cask.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/api/cask.rb -------------------------------------------------------------------------------- /Library/Homebrew/api/formula.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/api/formula.rb -------------------------------------------------------------------------------- /Library/Homebrew/api/homebrew-1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/api/homebrew-1.pem -------------------------------------------------------------------------------- /Library/Homebrew/api/internal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/api/internal.rb -------------------------------------------------------------------------------- /Library/Homebrew/api/json_download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/api/json_download.rb -------------------------------------------------------------------------------- /Library/Homebrew/api/source_download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/api/source_download.rb -------------------------------------------------------------------------------- /Library/Homebrew/api_hashable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/api_hashable.rb -------------------------------------------------------------------------------- /Library/Homebrew/ast_constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/ast_constants.rb -------------------------------------------------------------------------------- /Library/Homebrew/attestation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/attestation.rb -------------------------------------------------------------------------------- /Library/Homebrew/autobump_constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/autobump_constants.rb -------------------------------------------------------------------------------- /Library/Homebrew/bottle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bottle.rb -------------------------------------------------------------------------------- /Library/Homebrew/bottle_specification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bottle_specification.rb -------------------------------------------------------------------------------- /Library/Homebrew/brew.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/brew.rb -------------------------------------------------------------------------------- /Library/Homebrew/brew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/brew.sh -------------------------------------------------------------------------------- /Library/Homebrew/brew_irbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/brew_irbrc -------------------------------------------------------------------------------- /Library/Homebrew/build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/build.rb -------------------------------------------------------------------------------- /Library/Homebrew/build_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/build_environment.rb -------------------------------------------------------------------------------- /Library/Homebrew/build_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/build_options.rb -------------------------------------------------------------------------------- /Library/Homebrew/bump_version_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bump_version_parser.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/adder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/adder.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/brew_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/brew_checker.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/brew_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/brew_services.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/brewfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/brewfile.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/cask_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/cask_checker.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/cask_dumper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/cask_dumper.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/cask_installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/cask_installer.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/checker.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/commands/add.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/commands/add.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/commands/check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/commands/check.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/dsl.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/dumper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/dumper.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/go_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/go_checker.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/go_dumper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/go_dumper.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/go_installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/go_installer.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/installer.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/lister.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/lister.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/remover.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/remover.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/skipper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/skipper.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/tap_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/tap_checker.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle/tap_dumper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle/tap_dumper.rb -------------------------------------------------------------------------------- /Library/Homebrew/bundle_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/bundle_version.rb -------------------------------------------------------------------------------- /Library/Homebrew/cachable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cachable.rb -------------------------------------------------------------------------------- /Library/Homebrew/cache_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cache_store.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/artifact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/artifact.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/artifact/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/artifact/app.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/artifact/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/artifact/font.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/artifact/moved.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/artifact/moved.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/artifact/pkg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/artifact/pkg.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/artifact/suite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/artifact/suite.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/artifact/zap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/artifact/zap.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/artifact_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/artifact_set.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/audit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/audit.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/auditor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/auditor.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/cache.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/cask.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/cask.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/cask_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/cask_loader.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/caskroom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/caskroom.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/config.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/denylist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/denylist.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/download.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/dsl.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/dsl/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/dsl/base.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/dsl/caveats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/dsl/caveats.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/dsl/caveats.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/dsl/caveats.rbi -------------------------------------------------------------------------------- /Library/Homebrew/cask/dsl/container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/dsl/container.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/dsl/depends_on.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/dsl/depends_on.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/dsl/postflight.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/dsl/postflight.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/dsl/preflight.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/dsl/preflight.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/dsl/rename.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/dsl/rename.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/dsl/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/dsl/version.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/exceptions.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/info.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/installer.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/list.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/macos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/macos.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/metadata.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/migrator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/migrator.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/pkg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/pkg.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/quarantine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/quarantine.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/reinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/reinstall.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/staged.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/staged.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/tab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/tab.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/uninstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/uninstall.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/upgrade.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/url.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/utils.rb -------------------------------------------------------------------------------- /Library/Homebrew/cask/utils/rmdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/utils/rmdir.sh -------------------------------------------------------------------------------- /Library/Homebrew/cask/utils/trash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask/utils/trash.swift -------------------------------------------------------------------------------- /Library/Homebrew/cask_dependent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cask_dependent.rb -------------------------------------------------------------------------------- /Library/Homebrew/caveats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/caveats.rb -------------------------------------------------------------------------------- /Library/Homebrew/checksum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/checksum.rb -------------------------------------------------------------------------------- /Library/Homebrew/cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cleaner.rb -------------------------------------------------------------------------------- /Library/Homebrew/cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cleanup.rb -------------------------------------------------------------------------------- /Library/Homebrew/cli/args.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cli/args.rb -------------------------------------------------------------------------------- /Library/Homebrew/cli/args.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cli/args.rbi -------------------------------------------------------------------------------- /Library/Homebrew/cli/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cli/error.rb -------------------------------------------------------------------------------- /Library/Homebrew/cli/named_args.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cli/named_args.rb -------------------------------------------------------------------------------- /Library/Homebrew/cli/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cli/parser.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/--cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/--cache.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/--caskroom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/--caskroom.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/--cellar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/--cellar.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/--env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/--env.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/--prefix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/--prefix.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/--repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/--repository.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/--repository.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/--repository.sh -------------------------------------------------------------------------------- /Library/Homebrew/cmd/--taps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/--taps.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/--taps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/--taps.sh -------------------------------------------------------------------------------- /Library/Homebrew/cmd/--version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/--version.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/--version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/--version.sh -------------------------------------------------------------------------------- /Library/Homebrew/cmd/alias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/alias.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/analytics.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/autoremove.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/autoremove.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/bundle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/bundle.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/casks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/casks.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/casks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/casks.sh -------------------------------------------------------------------------------- /Library/Homebrew/cmd/cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/cleanup.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/command.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/commands.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/completions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/completions.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/config.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/deps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/deps.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/desc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/desc.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/developer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/developer.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/docs.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/doctor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/doctor.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/fetch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/fetch.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/formulae.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/formulae.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/formulae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/formulae.sh -------------------------------------------------------------------------------- /Library/Homebrew/cmd/gist-logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/gist-logs.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/help.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/home.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/home.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/info.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/install.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/leaves.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/leaves.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/link.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/list.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/log.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/mcp-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/mcp-server.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/mcp-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/mcp-server.sh -------------------------------------------------------------------------------- /Library/Homebrew/cmd/migrate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/migrate.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/missing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/missing.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/nodenv-sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/nodenv-sync.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/options.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/outdated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/outdated.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/pin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/pin.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/postinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/postinstall.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/pyenv-sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/pyenv-sync.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/rbenv-sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/rbenv-sync.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/readall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/readall.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/reinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/reinstall.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/search.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/services.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/setup-ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/setup-ruby.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/setup-ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/setup-ruby.sh -------------------------------------------------------------------------------- /Library/Homebrew/cmd/shellenv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/shellenv.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/shellenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/shellenv.sh -------------------------------------------------------------------------------- /Library/Homebrew/cmd/tab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/tab.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/tap-info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/tap-info.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/tap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/tap.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/unalias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/unalias.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/uninstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/uninstall.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/unlink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/unlink.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/unpin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/unpin.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/untap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/untap.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/update-report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/update-report.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/update-reset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/update-reset.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/update-reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/update-reset.sh -------------------------------------------------------------------------------- /Library/Homebrew/cmd/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/update.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/update.sh -------------------------------------------------------------------------------- /Library/Homebrew/cmd/upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/upgrade.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/uses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/uses.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/vendor-install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/vendor-install.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/vendor-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/vendor-install.sh -------------------------------------------------------------------------------- /Library/Homebrew/cmd/which-formula.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/which-formula.rb -------------------------------------------------------------------------------- /Library/Homebrew/cmd/which-formula.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cmd/which-formula.sh -------------------------------------------------------------------------------- /Library/Homebrew/command_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/command_path.sh -------------------------------------------------------------------------------- /Library/Homebrew/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/commands.rb -------------------------------------------------------------------------------- /Library/Homebrew/compilers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/compilers.rb -------------------------------------------------------------------------------- /Library/Homebrew/completions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/completions.rb -------------------------------------------------------------------------------- /Library/Homebrew/completions/bash.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/completions/bash.erb -------------------------------------------------------------------------------- /Library/Homebrew/completions/fish.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/completions/fish.erb -------------------------------------------------------------------------------- /Library/Homebrew/completions/zsh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/completions/zsh.erb -------------------------------------------------------------------------------- /Library/Homebrew/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/context.rb -------------------------------------------------------------------------------- /Library/Homebrew/cxxstdlib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/cxxstdlib.rb -------------------------------------------------------------------------------- /Library/Homebrew/data/schemas/sbom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/data/schemas/sbom.json -------------------------------------------------------------------------------- /Library/Homebrew/debrew.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/debrew.rb -------------------------------------------------------------------------------- /Library/Homebrew/debrew/irb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/debrew/irb.rb -------------------------------------------------------------------------------- /Library/Homebrew/dependable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dependable.rb -------------------------------------------------------------------------------- /Library/Homebrew/dependencies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dependencies.rb -------------------------------------------------------------------------------- /Library/Homebrew/dependencies.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dependencies.rbi -------------------------------------------------------------------------------- /Library/Homebrew/dependency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dependency.rb -------------------------------------------------------------------------------- /Library/Homebrew/dependents_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dependents_message.rb -------------------------------------------------------------------------------- /Library/Homebrew/deprecate_disable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/deprecate_disable.rb -------------------------------------------------------------------------------- /Library/Homebrew/descriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/descriptions.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/audit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/audit.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/bottle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/bottle.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/bump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/bump.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/cat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/cat.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/create.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/debugger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/debugger.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/edit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/edit.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/extract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/extract.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/formula.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/formula.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/irb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/irb.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/lgtm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/lgtm.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/linkage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/linkage.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/livecheck.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/livecheck.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/pr-publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/pr-publish.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/pr-pull.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/pr-pull.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/pr-upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/pr-upload.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/prof.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/prof.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/release.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/rubocop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/rubocop.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/rubocop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/rubocop.sh -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/ruby.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/rubydoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/rubydoc.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/sh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/sh.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/style.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/style.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/tap-new.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/tap-new.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/test-bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/test-bot.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/test.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/tests.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/typecheck.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/typecheck.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/unbottled.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/unbottled.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/unpack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/unpack.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/update-test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/update-test.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/vendor-gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/vendor-gems.rb -------------------------------------------------------------------------------- /Library/Homebrew/dev-cmd/verify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/dev-cmd/verify.rb -------------------------------------------------------------------------------- /Library/Homebrew/development_tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/development_tools.rb -------------------------------------------------------------------------------- /Library/Homebrew/diagnostic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/diagnostic.rb -------------------------------------------------------------------------------- /Library/Homebrew/download_queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/download_queue.rb -------------------------------------------------------------------------------- /Library/Homebrew/download_strategy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/download_strategy.rb -------------------------------------------------------------------------------- /Library/Homebrew/download_strategy.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/download_strategy.rbi -------------------------------------------------------------------------------- /Library/Homebrew/downloadable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/downloadable.rb -------------------------------------------------------------------------------- /Library/Homebrew/env_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/env_config.rb -------------------------------------------------------------------------------- /Library/Homebrew/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/exceptions.rb -------------------------------------------------------------------------------- /Library/Homebrew/executables_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/executables_db.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/ENV.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/ENV.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/ENV.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/ENV.rbi -------------------------------------------------------------------------------- /Library/Homebrew/extend/ENV/shared.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/ENV/shared.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/ENV/shared.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/ENV/shared.rbi -------------------------------------------------------------------------------- /Library/Homebrew/extend/ENV/std.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/ENV/std.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/ENV/super.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/ENV/super.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/array.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/array.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/array.rbi -------------------------------------------------------------------------------- /Library/Homebrew/extend/blank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/blank.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/enumerable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/enumerable.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/enumerable.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/enumerable.rbi -------------------------------------------------------------------------------- /Library/Homebrew/extend/file/atomic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/file/atomic.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/hash/keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/hash/keys.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/hash/keys.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/hash/keys.rbi -------------------------------------------------------------------------------- /Library/Homebrew/extend/kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/kernel.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/module.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/optparse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/optparse.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/bottles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/bottles.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/cask/dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/cask/dsl.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/cleaner.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/cleanup.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/compilers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/compilers.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/formula.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/formula.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/hardware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/hardware.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/install.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/keg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/keg.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/linux/keg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/linux/keg.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/mac/keg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/mac/keg.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/mac/tap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/mac/tap.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/pathname.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/pathname.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/readall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/readall.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/reinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/reinstall.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/sandbox.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/os/tap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/os/tap.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/pathname.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/pathname.rb -------------------------------------------------------------------------------- /Library/Homebrew/extend/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/extend/string.rb -------------------------------------------------------------------------------- /Library/Homebrew/fetch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/fetch.rb -------------------------------------------------------------------------------- /Library/Homebrew/formula-analytics/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /Library/Homebrew/formula-analytics/requirements.in: -------------------------------------------------------------------------------- 1 | influxdb3-python 2 | -------------------------------------------------------------------------------- /Library/Homebrew/formula.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formula.rb -------------------------------------------------------------------------------- /Library/Homebrew/formula_assertions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formula_assertions.rb -------------------------------------------------------------------------------- /Library/Homebrew/formula_auditor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formula_auditor.rb -------------------------------------------------------------------------------- /Library/Homebrew/formula_creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formula_creator.rb -------------------------------------------------------------------------------- /Library/Homebrew/formula_free_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formula_free_port.rb -------------------------------------------------------------------------------- /Library/Homebrew/formula_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formula_info.rb -------------------------------------------------------------------------------- /Library/Homebrew/formula_installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formula_installer.rb -------------------------------------------------------------------------------- /Library/Homebrew/formula_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formula_path.sh -------------------------------------------------------------------------------- /Library/Homebrew/formula_pin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formula_pin.rb -------------------------------------------------------------------------------- /Library/Homebrew/formula_stub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formula_stub.rb -------------------------------------------------------------------------------- /Library/Homebrew/formula_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formula_versions.rb -------------------------------------------------------------------------------- /Library/Homebrew/formulary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/formulary.rb -------------------------------------------------------------------------------- /Library/Homebrew/git_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/git_repository.rb -------------------------------------------------------------------------------- /Library/Homebrew/github_packages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/github_packages.rb -------------------------------------------------------------------------------- /Library/Homebrew/github_releases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/github_releases.rb -------------------------------------------------------------------------------- /Library/Homebrew/github_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/github_runner.rb -------------------------------------------------------------------------------- /Library/Homebrew/global.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/global.rb -------------------------------------------------------------------------------- /Library/Homebrew/hardware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/hardware.rb -------------------------------------------------------------------------------- /Library/Homebrew/head_software_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/head_software_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/help.rb -------------------------------------------------------------------------------- /Library/Homebrew/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/help.sh -------------------------------------------------------------------------------- /Library/Homebrew/ignorable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/ignorable.rb -------------------------------------------------------------------------------- /Library/Homebrew/ignorable.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/ignorable.rbi -------------------------------------------------------------------------------- /Library/Homebrew/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/install.rb -------------------------------------------------------------------------------- /Library/Homebrew/install_renamed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/install_renamed.rb -------------------------------------------------------------------------------- /Library/Homebrew/items.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/items.sh -------------------------------------------------------------------------------- /Library/Homebrew/keg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/keg.rb -------------------------------------------------------------------------------- /Library/Homebrew/keg.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/keg.rbi -------------------------------------------------------------------------------- /Library/Homebrew/keg_only_reason.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/keg_only_reason.rb -------------------------------------------------------------------------------- /Library/Homebrew/keg_relocate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/keg_relocate.rb -------------------------------------------------------------------------------- /Library/Homebrew/language/java.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/language/java.rb -------------------------------------------------------------------------------- /Library/Homebrew/language/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/language/node.rb -------------------------------------------------------------------------------- /Library/Homebrew/language/perl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/language/perl.rb -------------------------------------------------------------------------------- /Library/Homebrew/language/php.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/language/php.rb -------------------------------------------------------------------------------- /Library/Homebrew/language/python.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/language/python.rb -------------------------------------------------------------------------------- /Library/Homebrew/lazy_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/lazy_object.rb -------------------------------------------------------------------------------- /Library/Homebrew/linkage_cache_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/linkage_cache_store.rb -------------------------------------------------------------------------------- /Library/Homebrew/linkage_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/linkage_checker.rb -------------------------------------------------------------------------------- /Library/Homebrew/linux_runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/linux_runner_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/list.sh -------------------------------------------------------------------------------- /Library/Homebrew/livecheck.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/livecheck.rb -------------------------------------------------------------------------------- /Library/Homebrew/livecheck/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/livecheck/constants.rb -------------------------------------------------------------------------------- /Library/Homebrew/livecheck/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/livecheck/error.rb -------------------------------------------------------------------------------- /Library/Homebrew/livecheck/livecheck.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/livecheck/livecheck.rb -------------------------------------------------------------------------------- /Library/Homebrew/livecheck/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/livecheck/options.rb -------------------------------------------------------------------------------- /Library/Homebrew/livecheck/strategic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/livecheck/strategic.rb -------------------------------------------------------------------------------- /Library/Homebrew/livecheck/strategy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/livecheck/strategy.rb -------------------------------------------------------------------------------- /Library/Homebrew/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/locale.rb -------------------------------------------------------------------------------- /Library/Homebrew/lock_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/lock_file.rb -------------------------------------------------------------------------------- /Library/Homebrew/macos_runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/macos_runner_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/macos_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/macos_version.rb -------------------------------------------------------------------------------- /Library/Homebrew/manpages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/manpages.rb -------------------------------------------------------------------------------- /Library/Homebrew/manpages/brew.1.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/manpages/brew.1.md.erb -------------------------------------------------------------------------------- /Library/Homebrew/mcp_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/mcp_server.rb -------------------------------------------------------------------------------- /Library/Homebrew/messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/messages.rb -------------------------------------------------------------------------------- /Library/Homebrew/metafiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/metafiles.rb -------------------------------------------------------------------------------- /Library/Homebrew/migrator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/migrator.rb -------------------------------------------------------------------------------- /Library/Homebrew/missing_formula.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/missing_formula.rb -------------------------------------------------------------------------------- /Library/Homebrew/mktemp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/mktemp.rb -------------------------------------------------------------------------------- /Library/Homebrew/official_taps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/official_taps.rb -------------------------------------------------------------------------------- /Library/Homebrew/on_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/on_system.rb -------------------------------------------------------------------------------- /Library/Homebrew/on_system.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/on_system.rbi -------------------------------------------------------------------------------- /Library/Homebrew/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/options.rb -------------------------------------------------------------------------------- /Library/Homebrew/options.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/options.rbi -------------------------------------------------------------------------------- /Library/Homebrew/os.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/os.rb -------------------------------------------------------------------------------- /Library/Homebrew/os/linux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/os/linux.rb -------------------------------------------------------------------------------- /Library/Homebrew/os/linux/elf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/os/linux/elf.rb -------------------------------------------------------------------------------- /Library/Homebrew/os/linux/glibc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/os/linux/glibc.rb -------------------------------------------------------------------------------- /Library/Homebrew/os/linux/kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/os/linux/kernel.rb -------------------------------------------------------------------------------- /Library/Homebrew/os/linux/ld.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/os/linux/ld.rb -------------------------------------------------------------------------------- /Library/Homebrew/os/linux/libstdcxx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/os/linux/libstdcxx.rb -------------------------------------------------------------------------------- /Library/Homebrew/os/mac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/os/mac.rb -------------------------------------------------------------------------------- /Library/Homebrew/os/mac/mach.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/os/mac/mach.rb -------------------------------------------------------------------------------- /Library/Homebrew/os/mac/pkgconfig/11.0: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /Library/Homebrew/os/mac/pkgconfig/11.1: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /Library/Homebrew/os/mac/sdk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/os/mac/sdk.rb -------------------------------------------------------------------------------- /Library/Homebrew/os/mac/xcode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/os/mac/xcode.rb -------------------------------------------------------------------------------- /Library/Homebrew/patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/patch.rb -------------------------------------------------------------------------------- /Library/Homebrew/pkg_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/pkg_version.rb -------------------------------------------------------------------------------- /Library/Homebrew/pkg_version.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/pkg_version.rbi -------------------------------------------------------------------------------- /Library/Homebrew/postinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/postinstall.rb -------------------------------------------------------------------------------- /Library/Homebrew/pour_bottle_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/pour_bottle_check.rb -------------------------------------------------------------------------------- /Library/Homebrew/pypi_packages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/pypi_packages.rb -------------------------------------------------------------------------------- /Library/Homebrew/readall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/readall.rb -------------------------------------------------------------------------------- /Library/Homebrew/readline_nonblock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/readline_nonblock.rb -------------------------------------------------------------------------------- /Library/Homebrew/reinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/reinstall.rb -------------------------------------------------------------------------------- /Library/Homebrew/requirement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/requirement.rb -------------------------------------------------------------------------------- /Library/Homebrew/requirements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/requirements.rb -------------------------------------------------------------------------------- /Library/Homebrew/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/resource.rb -------------------------------------------------------------------------------- /Library/Homebrew/resource_auditor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/resource_auditor.rb -------------------------------------------------------------------------------- /Library/Homebrew/retryable_download.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/retryable_download.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/all.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/blank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/blank.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/bottle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/bottle.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/cask/desc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/cask/desc.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/cask/url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/cask/url.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/caveats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/caveats.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/checksum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/checksum.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/class.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/conflicts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/conflicts.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/desc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/desc.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/files.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/homepage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/homepage.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/io_read.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/io_read.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/keg_only.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/keg_only.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/lines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/lines.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/livecheck.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/livecheck.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/options.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/patches.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/presence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/presence.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/present.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/present.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/service.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/text.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/urls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/urls.rb -------------------------------------------------------------------------------- /Library/Homebrew/rubocops/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/rubocops/version.rb -------------------------------------------------------------------------------- /Library/Homebrew/sandbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/sandbox.rb -------------------------------------------------------------------------------- /Library/Homebrew/sbom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/sbom.rb -------------------------------------------------------------------------------- /Library/Homebrew/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/search.rb -------------------------------------------------------------------------------- /Library/Homebrew/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/service.rb -------------------------------------------------------------------------------- /Library/Homebrew/services/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/services/cli.rb -------------------------------------------------------------------------------- /Library/Homebrew/services/formulae.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/services/formulae.rb -------------------------------------------------------------------------------- /Library/Homebrew/services/system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/services/system.rb -------------------------------------------------------------------------------- /Library/Homebrew/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/settings.rb -------------------------------------------------------------------------------- /Library/Homebrew/shell_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shell_command.rb -------------------------------------------------------------------------------- /Library/Homebrew/shims/gems/rdbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/gems/rdbg -------------------------------------------------------------------------------- /Library/Homebrew/shims/gems/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/gems/rubocop -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/c++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/c89: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/c99: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/cc: -------------------------------------------------------------------------------- 1 | ../../super/cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/clang: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/clang++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/cpp: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/curl: -------------------------------------------------------------------------------- 1 | ../../shared/curl -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-10: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-11: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-12: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-13: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-14: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-15: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-4.2: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-4.9: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-5: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-6: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-7: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-8: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/g++-9: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gcc: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gcc-10: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gcc-11: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gcc-12: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gcc-13: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gcc-14: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gcc-15: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gcc-7: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gcc-8: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gcc-9: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/git: -------------------------------------------------------------------------------- 1 | ../../shared/git -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gmake: -------------------------------------------------------------------------------- 1 | make -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gnumake: -------------------------------------------------------------------------------- 1 | make -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/gold: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/ld: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/ld.gold: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/llvm_clang: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/llvm_clang++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/linux/super/make -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/ninja: -------------------------------------------------------------------------------- 1 | ../../super/ninja -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/svn: -------------------------------------------------------------------------------- 1 | ../../shared/svn -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/swift: -------------------------------------------------------------------------------- 1 | ../../super/swift -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/swiftc: -------------------------------------------------------------------------------- 1 | swift -------------------------------------------------------------------------------- /Library/Homebrew/shims/linux/super/x86_64-linux-gnu-gcc: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/ant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/mac/super/ant -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/bsdmake: -------------------------------------------------------------------------------- 1 | make -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/c++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/c89: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/c99: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/cc: -------------------------------------------------------------------------------- 1 | ../../super/cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/clang: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/clang++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/cpp: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/curl: -------------------------------------------------------------------------------- 1 | ../../shared/curl -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-10: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-11: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-12: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-13: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-14: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-15: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-4.2: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-4.9: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-5: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-6: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-7: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-8: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/g++-9: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gcc: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gcc-10: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gcc-11: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gcc-12: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gcc-13: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gcc-14: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gcc-15: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gcc-7: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gcc-8: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gcc-9: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gem: -------------------------------------------------------------------------------- 1 | ruby -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/git: -------------------------------------------------------------------------------- 1 | ../../shared/git -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gmake: -------------------------------------------------------------------------------- 1 | make -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/gnumake: -------------------------------------------------------------------------------- 1 | make -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/ld: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/llvm_clang: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/llvm_clang++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/mac/super/make -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/mig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/mac/super/mig -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/ninja: -------------------------------------------------------------------------------- 1 | ../../super/ninja -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/pkgconf: -------------------------------------------------------------------------------- 1 | pkg-config -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/rake: -------------------------------------------------------------------------------- 1 | ruby -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/mac/super/ruby -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/svn: -------------------------------------------------------------------------------- 1 | ../../shared/svn -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/mac/super/swift -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/swiftc: -------------------------------------------------------------------------------- 1 | swift -------------------------------------------------------------------------------- /Library/Homebrew/shims/mac/super/xcrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/mac/super/xcrun -------------------------------------------------------------------------------- /Library/Homebrew/shims/scm: -------------------------------------------------------------------------------- 1 | shared -------------------------------------------------------------------------------- /Library/Homebrew/shims/shared/curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/shared/curl -------------------------------------------------------------------------------- /Library/Homebrew/shims/shared/git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/shared/git -------------------------------------------------------------------------------- /Library/Homebrew/shims/shared/svn: -------------------------------------------------------------------------------- 1 | git -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/c++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/c89: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/c99: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/super/cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/clang: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/clang++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/cpp: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/curl: -------------------------------------------------------------------------------- 1 | ../shared/curl -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-10: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-11: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-12: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-13: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-14: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-15: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-4.2: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-4.9: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-5: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-6: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-7: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-8: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/g++-9: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/gcc: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/gcc-10: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/gcc-11: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/gcc-12: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/gcc-13: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/gcc-14: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/gcc-15: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/gcc-7: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/gcc-8: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/gcc-9: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/git: -------------------------------------------------------------------------------- 1 | ../shared/git -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/ld: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/llvm_clang: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/llvm_clang++: -------------------------------------------------------------------------------- 1 | cc -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/super/ninja -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/svn: -------------------------------------------------------------------------------- 1 | ../shared/svn -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/super/swift -------------------------------------------------------------------------------- /Library/Homebrew/shims/super/swiftc: -------------------------------------------------------------------------------- 1 | swift -------------------------------------------------------------------------------- /Library/Homebrew/shims/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/shims/utils.sh -------------------------------------------------------------------------------- /Library/Homebrew/simulate_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/simulate_system.rb -------------------------------------------------------------------------------- /Library/Homebrew/software_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/software_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/sorbet/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/sorbet/config -------------------------------------------------------------------------------- /Library/Homebrew/sorbet/rbi/annotations/.gitattributes: -------------------------------------------------------------------------------- 1 | **/*.rbi linguist-vendored=true 2 | -------------------------------------------------------------------------------- /Library/Homebrew/sorbet/rbi/dsl/.gitattributes: -------------------------------------------------------------------------------- 1 | **/*.rbi linguist-generated=true 2 | -------------------------------------------------------------------------------- /Library/Homebrew/sorbet/rbi/dsl/keg.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/sorbet/rbi/dsl/keg.rbi -------------------------------------------------------------------------------- /Library/Homebrew/sorbet/rbi/dsl/tty.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/sorbet/rbi/dsl/tty.rbi -------------------------------------------------------------------------------- /Library/Homebrew/sorbet/rbi/gems/.gitattributes: -------------------------------------------------------------------------------- 1 | **/*.rbi linguist-generated=true 2 | -------------------------------------------------------------------------------- /Library/Homebrew/source_location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/source_location.rb -------------------------------------------------------------------------------- /Library/Homebrew/standalone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/standalone.rb -------------------------------------------------------------------------------- /Library/Homebrew/standalone/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/standalone/init.rb -------------------------------------------------------------------------------- /Library/Homebrew/standalone/init.rbi: -------------------------------------------------------------------------------- 1 | # typed: strict 2 | 3 | HOMEBREW_USING_PORTABLE_RUBY = T.let(false, T::Boolean) 4 | -------------------------------------------------------------------------------- /Library/Homebrew/standalone/sorbet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/standalone/sorbet.rb -------------------------------------------------------------------------------- /Library/Homebrew/startup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/startup.rb -------------------------------------------------------------------------------- /Library/Homebrew/startup/bootsnap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/startup/bootsnap.rb -------------------------------------------------------------------------------- /Library/Homebrew/startup/bootsnap.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/startup/bootsnap.rbi -------------------------------------------------------------------------------- /Library/Homebrew/startup/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/startup/config.rb -------------------------------------------------------------------------------- /Library/Homebrew/startup/ruby_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/startup/ruby_path.rb -------------------------------------------------------------------------------- /Library/Homebrew/style.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/style.rb -------------------------------------------------------------------------------- /Library/Homebrew/system_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/system_command.rb -------------------------------------------------------------------------------- /Library/Homebrew/system_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/system_config.rb -------------------------------------------------------------------------------- /Library/Homebrew/tab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/tab.rb -------------------------------------------------------------------------------- /Library/Homebrew/tap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/tap.rb -------------------------------------------------------------------------------- /Library/Homebrew/tap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/tap.sh -------------------------------------------------------------------------------- /Library/Homebrew/tap_auditor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/tap_auditor.rb -------------------------------------------------------------------------------- /Library/Homebrew/tap_constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/tap_constants.rb -------------------------------------------------------------------------------- /Library/Homebrew/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/.rubocop.yml -------------------------------------------------------------------------------- /Library/Homebrew/test/ENV_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/ENV_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/PATH_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/PATH_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/api/cask_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/api/cask_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/api_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/bash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/bash_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/bottle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/bottle_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cask/cask_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cask/cask_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cask/dsl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cask/dsl_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cask/info_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cask/info_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cask/list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cask/list_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cask/pkg_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cask/pkg_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cask/tab_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cask/tab_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/caveats_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/caveats_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/checksum_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/checksum_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cleaner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cleaner_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cleanup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cleanup_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cli/parser_spec.rbi: -------------------------------------------------------------------------------- 1 | # typed: strict 2 | 3 | class Cmd < Homebrew::AbstractCommand; end 4 | -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/--env_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/--env_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/alias_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/alias_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/casks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/casks_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/deps_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/deps_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/desc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/desc_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/docs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/docs_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/fetch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/fetch_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/help_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/help_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/home_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/home_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/info_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/info_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/link_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/link_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/list_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/log_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/pin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/pin_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/tab_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/tab_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/tap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/tap_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/unpin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/unpin_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/untap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/untap_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cmd/uses_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cmd/uses_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/commands_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/commands_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/cxxstdlib_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/cxxstdlib_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/formatter_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/formula_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/formula_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/formulary_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/formulary_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/free_port_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/free_port_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/global_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/global_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/keg_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/keg_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/livecheck_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/livecheck_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/locale_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/locale_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/lock_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/lock_file_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/messages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/messages_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/migrator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/migrator_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/options_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/options_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/os/linux_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/os/linux_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/os/mac_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/os/mac_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/os/os_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/os/os_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/patch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/patch_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/patching_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/patching_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/pathname_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/pathname_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/resource_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/rubocop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/rubocop_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/sandbox_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/sandbox_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/sbom_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/sbom_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/search_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/service_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/settings_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/spec_helper.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/style_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/style_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/support/fixtures/bottles/testball_bottle-0.1.tahoe.bottle.tar.gz: -------------------------------------------------------------------------------- 1 | testball_bottle-0.1.yosemite.bottle.tar.gz -------------------------------------------------------------------------------- /Library/Homebrew/test/support/fixtures/cask/NewApp.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/Homebrew/test/support/fixtures/cask/NewApp.app/Contents/MacOS/NewApp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/Homebrew/test/support/fixtures/cask/NewApp.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/Homebrew/test/support/fixtures/cask/NewApp.app/Contents/Resources/Caffeine.icns: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/Homebrew/test/support/fixtures/cask/naked_executable: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /Library/Homebrew/test/support/fixtures/cask/naked_non_executable: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /Library/Homebrew/test/support/fixtures/sdks/big_sur/MacOSX.sdk/SDKSettings.json: -------------------------------------------------------------------------------- 1 | {"Version":"11.1"} 2 | -------------------------------------------------------------------------------- /Library/Homebrew/test/support/fixtures/sdks/malformed/MacOSX10.15.sdk/SDKSettings.json: -------------------------------------------------------------------------------- 1 | {"Version":"broken"} 2 | -------------------------------------------------------------------------------- /Library/Homebrew/test/tab_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/tab_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/tap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/tap_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/uninstall_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/uninstall_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/utils/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/utils/git_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/utils/svn_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/utils/svn_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/utils/tar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/utils/tar_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/utils/tty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/utils/tty_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/utils_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/utils_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test/version_spec.rb -------------------------------------------------------------------------------- /Library/Homebrew/test_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test_bot.rb -------------------------------------------------------------------------------- /Library/Homebrew/test_bot.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test_bot.rbi -------------------------------------------------------------------------------- /Library/Homebrew/test_bot/formulae.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test_bot/formulae.rb -------------------------------------------------------------------------------- /Library/Homebrew/test_bot/junit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test_bot/junit.rb -------------------------------------------------------------------------------- /Library/Homebrew/test_bot/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test_bot/setup.rb -------------------------------------------------------------------------------- /Library/Homebrew/test_bot/step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test_bot/step.rb -------------------------------------------------------------------------------- /Library/Homebrew/test_bot/tap_syntax.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test_bot/tap_syntax.rb -------------------------------------------------------------------------------- /Library/Homebrew/test_bot/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test_bot/test.rb -------------------------------------------------------------------------------- /Library/Homebrew/test_runner_formula.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/test_runner_formula.rb -------------------------------------------------------------------------------- /Library/Homebrew/uninstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/uninstall.rb -------------------------------------------------------------------------------- /Library/Homebrew/unlink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unlink.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/air.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/air.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/cab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/cab.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/cvs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/cvs.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/dmg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/dmg.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/git.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/jar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/jar.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/lha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/lha.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/otf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/otf.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/pax.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/pax.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/pkg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/pkg.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/rar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/rar.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/sit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/sit.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/tar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/tar.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/ttf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/ttf.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/xar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/xar.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/xz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/xz.rb -------------------------------------------------------------------------------- /Library/Homebrew/unpack_strategy/zip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/unpack_strategy/zip.rb -------------------------------------------------------------------------------- /Library/Homebrew/upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/upgrade.rb -------------------------------------------------------------------------------- /Library/Homebrew/url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/url.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/analytics.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/analytics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/analytics.sh -------------------------------------------------------------------------------- /Library/Homebrew/utils/ast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/ast.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/ast.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/ast.rbi -------------------------------------------------------------------------------- /Library/Homebrew/utils/attestation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/attestation.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/autoremove.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/autoremove.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/backtrace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/backtrace.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/bottles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/bottles.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/cpan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/cpan.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/curl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/curl.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/fork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/fork.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/formatter.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/gems.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/gems.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/gems.rbi -------------------------------------------------------------------------------- /Library/Homebrew/utils/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/git.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/github.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/github/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/github/api.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/gzip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/gzip.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/helpers.sh -------------------------------------------------------------------------------- /Library/Homebrew/utils/inreplace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/inreplace.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/link.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/linkage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/linkage.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/lock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/lock.sh -------------------------------------------------------------------------------- /Library/Homebrew/utils/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/output.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/path.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/pid_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/pid_path.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/popen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/popen.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/pypi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/pypi.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/repology.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/repology.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/rubocop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/rubocop.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/ruby.sh -------------------------------------------------------------------------------- /Library/Homebrew/utils/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/service.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/shared_audits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/shared_audits.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/shebang.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/shebang.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/shell.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/shfmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/shfmt.sh -------------------------------------------------------------------------------- /Library/Homebrew/utils/socket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/socket.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/spdx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/spdx.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/svn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/svn.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/tar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/tar.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/timer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/timer.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/tty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/tty.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/uid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/uid.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/user.rb -------------------------------------------------------------------------------- /Library/Homebrew/utils/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/utils/wrapper.sh -------------------------------------------------------------------------------- /Library/Homebrew/vendor/gems/mechanize: -------------------------------------------------------------------------------- 1 | mechanize-2.14.0/ -------------------------------------------------------------------------------- /Library/Homebrew/vendor/portable-ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.7 2 | -------------------------------------------------------------------------------- /Library/Homebrew/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/version.rb -------------------------------------------------------------------------------- /Library/Homebrew/version/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/version/parser.rb -------------------------------------------------------------------------------- /Library/Homebrew/warnings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/Homebrew/warnings.rb -------------------------------------------------------------------------------- /Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/Library/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/README.md -------------------------------------------------------------------------------- /bin/brew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/bin/brew -------------------------------------------------------------------------------- /completions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/completions/README.md -------------------------------------------------------------------------------- /completions/bash/brew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/completions/bash/brew -------------------------------------------------------------------------------- /completions/fish/brew.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/completions/fish/brew.fish -------------------------------------------------------------------------------- /completions/internal_commands_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/completions/internal_commands_list.txt -------------------------------------------------------------------------------- /completions/zsh/_brew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/completions/zsh/_brew -------------------------------------------------------------------------------- /docs/.mdl_ruleset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/.mdl_ruleset.rb -------------------------------------------------------------------------------- /docs/.mdl_style.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/.mdl_style.rb -------------------------------------------------------------------------------- /docs/.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/.mdlrc -------------------------------------------------------------------------------- /docs/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/.rubocop.yml -------------------------------------------------------------------------------- /docs/.ruby-version: -------------------------------------------------------------------------------- 1 | ../Library/Homebrew/.ruby-version -------------------------------------------------------------------------------- /docs/Acceptable-Casks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Acceptable-Casks.md -------------------------------------------------------------------------------- /docs/Acceptable-Formulae.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Acceptable-Formulae.md -------------------------------------------------------------------------------- /docs/Adding-Software-to-Homebrew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Adding-Software-to-Homebrew.md -------------------------------------------------------------------------------- /docs/Analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Analytics.md -------------------------------------------------------------------------------- /docs/Autobump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Autobump.md -------------------------------------------------------------------------------- /docs/Bottles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Bottles.md -------------------------------------------------------------------------------- /docs/Brew-Bundle-and-Brewfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Brew-Bundle-and-Brewfile.md -------------------------------------------------------------------------------- /docs/Brew-Livecheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Brew-Livecheck.md -------------------------------------------------------------------------------- /docs/BrewTestBot-For-Maintainers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/BrewTestBot-For-Maintainers.md -------------------------------------------------------------------------------- /docs/BrewTestBot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/BrewTestBot.md -------------------------------------------------------------------------------- /docs/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Brewfile -------------------------------------------------------------------------------- /docs/C++-Standard-Libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/C++-Standard-Libraries.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.brew.sh 2 | -------------------------------------------------------------------------------- /docs/Cask-Cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Cask-Cookbook.md -------------------------------------------------------------------------------- /docs/Checksum_Deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Checksum_Deprecation.md -------------------------------------------------------------------------------- /docs/Command-Not-Found.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Command-Not-Found.md -------------------------------------------------------------------------------- /docs/Common-Issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Common-Issues.md -------------------------------------------------------------------------------- /docs/Creating-a-Homebrew-Issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Creating-a-Homebrew-Issue.md -------------------------------------------------------------------------------- /docs/Custom-GCC-and-cross-compilers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Custom-GCC-and-cross-compilers.md -------------------------------------------------------------------------------- /docs/External-Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/External-Commands.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/Formula-Cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Formula-Cookbook.md -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gems,-Eggs-and-Perl-Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Gems,-Eggs-and-Perl-Modules.md -------------------------------------------------------------------------------- /docs/Homebrew-Governance-Archives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Homebrew-Governance-Archives.md -------------------------------------------------------------------------------- /docs/Homebrew-Governance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Homebrew-Governance.md -------------------------------------------------------------------------------- /docs/Homebrew-and-Java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Homebrew-and-Java.md -------------------------------------------------------------------------------- /docs/Homebrew-and-Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Homebrew-and-Python.md -------------------------------------------------------------------------------- /docs/Homebrew-brew-Maintainer-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Homebrew-brew-Maintainer-Guide.md -------------------------------------------------------------------------------- /docs/Homebrew-on-Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Homebrew-on-Linux.md -------------------------------------------------------------------------------- /docs/How-To-Organise-the-AGM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/How-To-Organise-the-AGM.md -------------------------------------------------------------------------------- /docs/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Installation.md -------------------------------------------------------------------------------- /docs/Interesting-Taps-and-Forks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Interesting-Taps-and-Forks.md -------------------------------------------------------------------------------- /docs/Kickstarter-Supporters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Kickstarter-Supporters.md -------------------------------------------------------------------------------- /docs/License-Guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/License-Guidelines.md -------------------------------------------------------------------------------- /docs/Linux-CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Linux-CI.md -------------------------------------------------------------------------------- /docs/MCP-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/MCP-Server.md -------------------------------------------------------------------------------- /docs/Maintainer-Guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Maintainer-Guidelines.md -------------------------------------------------------------------------------- /docs/Maintainer-Stipends-and-Grants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Maintainer-Stipends-and-Grants.md -------------------------------------------------------------------------------- /docs/Maintainers-Avoiding-Burnout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Maintainers-Avoiding-Burnout.md -------------------------------------------------------------------------------- /docs/Manpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Manpage.md -------------------------------------------------------------------------------- /docs/Migrating-A-Formula-To-A-Tap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Migrating-A-Formula-To-A-Tap.md -------------------------------------------------------------------------------- /docs/New-Maintainer-Checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/New-Maintainer-Checklist.md -------------------------------------------------------------------------------- /docs/Node-for-Formula-Authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Node-for-Formula-Authors.md -------------------------------------------------------------------------------- /docs/Prose-Style-Guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Prose-Style-Guidelines.md -------------------------------------------------------------------------------- /docs/Python-for-Formula-Authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Python-for-Formula-Authors.md -------------------------------------------------------------------------------- /docs/Querying-Brew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Querying-Brew.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Rakefile -------------------------------------------------------------------------------- /docs/Releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Releases.md -------------------------------------------------------------------------------- /docs/Rename-A-Formula.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Rename-A-Formula.md -------------------------------------------------------------------------------- /docs/Reproducible-Builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Reproducible-Builds.md -------------------------------------------------------------------------------- /docs/Shell-Completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Shell-Completion.md -------------------------------------------------------------------------------- /docs/Support-Tiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Support-Tiers.md -------------------------------------------------------------------------------- /docs/Taps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Taps.md -------------------------------------------------------------------------------- /docs/Tips-and-Tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Tips-and-Tricks.md -------------------------------------------------------------------------------- /docs/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Troubleshooting.md -------------------------------------------------------------------------------- /docs/Typechecking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Typechecking.md -------------------------------------------------------------------------------- /docs/Updating-Software-in-Homebrew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Updating-Software-in-Homebrew.md -------------------------------------------------------------------------------- /docs/Versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Versions.md -------------------------------------------------------------------------------- /docs/Xcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/Xcode.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/bin/jekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/bin/jekyll -------------------------------------------------------------------------------- /docs/docs_rubocop_style.yml: -------------------------------------------------------------------------------- 1 | .rubocop.yml -------------------------------------------------------------------------------- /docs/governance/2019-membership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2019-membership.md -------------------------------------------------------------------------------- /docs/governance/2019-plc-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2019-plc-minutes.md -------------------------------------------------------------------------------- /docs/governance/2020-membership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2020-membership.md -------------------------------------------------------------------------------- /docs/governance/2020-plc-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2020-plc-minutes.md -------------------------------------------------------------------------------- /docs/governance/2021-agm-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2021-agm-minutes.md -------------------------------------------------------------------------------- /docs/governance/2021-egm-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2021-egm-minutes.md -------------------------------------------------------------------------------- /docs/governance/2021-membership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2021-membership.md -------------------------------------------------------------------------------- /docs/governance/2021-plc-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2021-plc-minutes.md -------------------------------------------------------------------------------- /docs/governance/2022-agm-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2022-agm-minutes.md -------------------------------------------------------------------------------- /docs/governance/2022-membership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2022-membership.md -------------------------------------------------------------------------------- /docs/governance/2023-agm-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2023-agm-minutes.md -------------------------------------------------------------------------------- /docs/governance/2024-agm-minutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/governance/2024-agm-minutes.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /docs/vale-styles/Homebrew/Pronouns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/vale-styles/Homebrew/Pronouns.yml -------------------------------------------------------------------------------- /docs/vale-styles/Homebrew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/vale-styles/Homebrew/README.md -------------------------------------------------------------------------------- /docs/vale-styles/Homebrew/Spacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/vale-styles/Homebrew/Spacing.yml -------------------------------------------------------------------------------- /docs/vale-styles/Homebrew/Terms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/vale-styles/Homebrew/Terms.yml -------------------------------------------------------------------------------- /docs/vale-styles/Homebrew/Titles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/docs/vale-styles/Homebrew/Titles.yml -------------------------------------------------------------------------------- /manpages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/manpages/README.md -------------------------------------------------------------------------------- /manpages/brew.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/manpages/brew.1 -------------------------------------------------------------------------------- /package/Distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/package/Distribution.xml -------------------------------------------------------------------------------- /package/resources/CONCLUSION.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/package/resources/CONCLUSION.rtf -------------------------------------------------------------------------------- /package/resources/Homebrew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/package/resources/Homebrew.png -------------------------------------------------------------------------------- /package/resources/WELCOME.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/package/resources/WELCOME.rtf -------------------------------------------------------------------------------- /package/scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/package/scripts/postinstall -------------------------------------------------------------------------------- /package/scripts/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Homebrew/brew/HEAD/package/scripts/preinstall --------------------------------------------------------------------------------