{"id":19190043,"url":"https://github.com/apainintheneck/homebrew-dev-utils","last_synced_at":"2026-04-11T08:03:23.632Z","repository":{"id":167753177,"uuid":"643374025","full_name":"apainintheneck/homebrew-dev-utils","owner":"apainintheneck","description":"Extra commands for working on brew.","archived":false,"fork":false,"pushed_at":"2024-10-12T20:49:25.000Z","size":97,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-04T06:29:42.377Z","etag":null,"topics":["brew","homebrew","ruby","tap"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apainintheneck.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-21T00:27:58.000Z","updated_at":"2024-10-12T20:49:29.000Z","dependencies_parsed_at":"2023-07-08T09:15:46.255Z","dependency_job_id":"a4a8c033-9fbe-4cea-91e1-59933a0a60ff","html_url":"https://github.com/apainintheneck/homebrew-dev-utils","commit_stats":null,"previous_names":["apainintheneck/homebrew-dev-utils"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apainintheneck%2Fhomebrew-dev-utils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apainintheneck%2Fhomebrew-dev-utils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apainintheneck%2Fhomebrew-dev-utils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apainintheneck%2Fhomebrew-dev-utils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apainintheneck","download_url":"https://codeload.github.com/apainintheneck/homebrew-dev-utils/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240266855,"owners_count":19774075,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["brew","homebrew","ruby","tap"],"created_at":"2024-11-09T11:32:45.819Z","updated_at":"2026-04-11T08:03:23.573Z","avatar_url":"https://github.com/apainintheneck.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Brew Dev-utils\n\nA collection of commands and utilities that aim to make developer's lives a bit easier.\n\n## How do I install these commands?\n\nRun `brew tap apainintheneck/dev-utils`.\n\n## Documentation\n\n### brew api-readall-test\n\n```\nUsage: brew api-readall-test [options]\n\nTest API generation and loading of core formulae and casks.\n\nNote: This requires the core tap(s) to be installed locally,\nHOMEBREW_NO_INSTALL_FROM_API gets set automatically before running and this\ncommand is slow because it generates and then loads everything.\n\n      --fail-fast                  Exit after the first failure.\n      --formula, --formulae        Only test core formulae.\n      --cask, --casks              Only test core casks.\n  -d, --debug                      Display any debugging information.\n  -q, --quiet                      Make some output more quiet.\n  -v, --verbose                    Make some output more verbose.\n  -h, --help                       Show this message.\n```\n\n### brew branch-compare\n\n```\nUsage: brew branch-compare [options] -- command\n\nRuns a brew command on both the current branch and the main branch and then\ndiffs the output of both commands. This helps with debugging and assurance\ntesting when making changes to important commands.\n\nExample: brew branch-compare --quiet -- deps --installed\n\nWarning: This command runs git commands on the main brew repo. To be safe avoid\nrunning other brew commands simultaneously.\n\n      --ignore-errors              Continue diff when a command returns a\n                                   non-zero exit code.\n      --with-stderr                Combine stdout and stderr in diff output.\n      --word-diff                  Show word diff instead of default line diff.\n      --time                       Benchmark the command on both branches.\n      --local                      Only load formula/cask from local taps not\n                                   the API.\n  -d, --debug                      Display any debugging information.\n  -q, --quiet                      Make some output more quiet.\n  -v, --verbose                    Make some output more verbose.\n  -h, --help                       Show this message.\n```\n\n### brew generate-api-diff\n\n```\nUsage: brew generate-api-diff [options]\n\nCompare the API generation before and and after changes to brew. This helps with\ndebugging and assurance testing when making changes to the JSON API.\n\nNote: One of the --cask or --formula options is required.\n\nWarning: This command runs git commands on the main brew repo. To be safe avoid\nrunning other brew commands simultaneously.\n\n      --cask                       Run the diff on only core casks.\n      --formula                    Run the diff on only core formulae.\n      --word-diff                  Show word diff instead of default line diff.\n      --stat                       Shows condensed output based on git\n                                   diff --stat\n  -d, --debug                      Display any debugging information.\n  -q, --quiet                      Make some output more quiet.\n  -v, --verbose                    Make some output more verbose.\n  -h, --help                       Show this message.\n```\n\n### brew service-diff\n\n```\nUsage: brew service-diff [options]\n\nCompare the service file generation on macOS and Linux before and after changes\nto brew. This helps with debugging and assurance testing when making changes to\nthe brew services DSL.\n\nWarning: This command runs git commands on the main brew repo. To be safe avoid\nrunning other brew commands simultaneously.\n\n      --formula                    Run the diff on only one formula.\n      --word-diff                  Show word diff instead of default line diff.\n      --stat                       Shows condensed output based on git\n                                   diff --stat\n  -d, --debug                      Display any debugging information.\n  -q, --quiet                      Make some output more quiet.\n  -v, --verbose                    Make some output more verbose.\n  -h, --help                       Show this message.\n```\n\n### brew startup-stats\n\n```\nUsage: brew startup-stats [option]\n\nGet information about the state of brew at the time a command is called. This\nincludes loaded constants, requires and other such information.\n\n      --defined                    Check if a constant is defined.\n      --require                    Diagnostics about a single require statement.\n      --list-requires              List all requires made before this command\n                                   was run.\n      --list-constants             List all constants loaded before this command\n                                   was run.\n  -d, --debug                      Display any debugging information.\n  -q, --quiet                      Make some output more quiet.\n  -v, --verbose                    Make some output more verbose.\n  -h, --help                       Show this message.\n```\n\n## Development\n\nLinting and readme checks along with integration tests are run on each pull request.\nAll commands are run using the included Rakefile. Run `rake` to get the list of commands.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapainintheneck%2Fhomebrew-dev-utils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapainintheneck%2Fhomebrew-dev-utils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapainintheneck%2Fhomebrew-dev-utils/lists"}