{"id":15034382,"url":"https://github.com/homebrew/homebrew-bundle","last_synced_at":"2025-03-18T20:16:35.558Z","repository":{"id":1556833,"uuid":"1952825","full_name":"Homebrew/homebrew-bundle","owner":"Homebrew","description":"📦 Bundler for non-Ruby dependencies from Homebrew, Homebrew Cask and the Mac App Store.","archived":false,"fork":false,"pushed_at":"2025-03-15T01:47:45.000Z","size":2545,"stargazers_count":5499,"open_issues_count":5,"forks_count":302,"subscribers_count":84,"default_branch":"master","last_synced_at":"2025-03-15T14:05:10.452Z","etag":null,"topics":["bundle","cmd","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Homebrew.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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},"funding":{"github":"Homebrew","open_collective":"homebrew","patreon":"homebrew"}},"created_at":"2011-06-25T17:12:46.000Z","updated_at":"2025-03-15T04:14:49.000Z","dependencies_parsed_at":"2024-01-28T05:01:55.968Z","dependency_job_id":"f9ccf949-007c-4f62-aa1b-23b637005322","html_url":"https://github.com/Homebrew/homebrew-bundle","commit_stats":{"total_commits":1323,"total_committers":112,"mean_commits":11.8125,"dds":0.800453514739229,"last_synced_commit":"120eb5db973fff42fa26b33ac241cc2ddcc11741"},"previous_names":["andrew/brewdler"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Homebrew%2Fhomebrew-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Homebrew%2Fhomebrew-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Homebrew%2Fhomebrew-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Homebrew%2Fhomebrew-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Homebrew","download_url":"https://codeload.github.com/Homebrew/homebrew-bundle/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244297868,"owners_count":20430347,"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":["bundle","cmd","homebrew","ruby","tap"],"created_at":"2024-09-24T20:24:48.902Z","updated_at":"2025-03-18T20:16:35.529Z","avatar_url":"https://github.com/Homebrew.png","language":"Ruby","readme":"# Homebrew Bundle\n\nBundler for non-Ruby dependencies from Homebrew, Homebrew Cask, Mac App Store, Whalebrew and Visual Studio Code.\n\n## Requirements\n\n[Homebrew](https://github.com/Homebrew/brew) (on macOS or [Linux](https://docs.brew.sh/Homebrew-on-Linux)) for installing dependencies.\n\n[Homebrew Cask](https://github.com/Homebrew/homebrew-cask) is optional and used for installing Mac applications.\n\n[mas-cli](https://github.com/mas-cli/mas) is optional and used for installing Mac App Store applications.\n\n[Whalebrew](https://github.com/whalebrew/whalebrew) is optional and used for installing Whalebrew images.\n\n[Visual Studio Code](https://code.visualstudio.com/) is optional and used for installing Visual Studio Code extensions.\n\n## Installation\n\n`brew bundle` is automatically installed when first run.\n\n## Usage\n\nSee [the `brew bundle` section of the `brew generate-man-completions` output](https://docs.brew.sh/Manpage#bundle-subcommand) or `brew bundle --help`.\n\nAn example `Brewfile`:\n\n```ruby\n# 'brew tap'\ntap \"homebrew/cask\"\n# 'brew tap' with custom Git URL\ntap \"user/tap-repo\", \"https://user@bitbucket.org/user/homebrew-tap-repo.git\"\n# 'brew tap' with arguments\ntap \"user/tap-repo\", \"https://user@bitbucket.org/user/homebrew-tap-repo.git\", force_auto_update: true\n\n# set arguments for all 'brew install --cask' commands\ncask_args appdir: \"~/Applications\", require_sha: true\n\n# 'brew install'\nbrew \"imagemagick\"\n# 'brew install --with-rmtp', 'brew link --overwrite', 'brew services restart' even if no install/upgrade\nbrew \"denji/nginx/nginx-full\", link: :overwrite, args: [\"with-rmtp\"], restart_service: :always\n# 'brew install', always 'brew services restart', 'brew link', 'brew unlink mysql' (if it is installed)\nbrew \"mysql@5.6\", restart_service: :changed, link: true, conflicts_with: [\"mysql\"]\n# 'brew install' and run a command if installer or upgraded.\nbrew \"postgresql@16\",\n     postinstall: \"${HOMEBREW_PREFIX}/opt/postgresql@16/bin/postgres -D ${HOMEBREW_PREFIX}/var/postgresql@16\"\n# install only on specified OS\nbrew \"gnupg\" if OS.mac?\nbrew \"glibc\" if OS.linux?\n\n# 'brew install --cask'\ncask \"google-chrome\"\n# 'brew install --cask --appdir=~/my-apps/Applications'\ncask \"firefox\", args: { appdir: \"~/my-apps/Applications\" }\n# bypass Gatekeeper protections (NOT RECOMMENDED)\ncask \"firefox\", args: { no_quarantine: true }\n# always upgrade auto-updated or unversioned cask to latest version even if already installed\ncask \"opera\", greedy: true\n# 'brew install --cask' only if '/usr/libexec/java_home --failfast' fails\ncask \"java\" unless system \"/usr/libexec/java_home\", \"--failfast\"\n# 'brew install --cask' and run a command if installer or upgraded.\ncask \"google-cloud-sdk\", postinstall: \"${HOMEBREW_PREFIX}/bin/gcloud components update\"\n\n# 'mas install'\nmas \"1Password\", id: 443_987_910\n\n# 'whalebrew install'\nwhalebrew \"whalebrew/wget\"\n\n# 'vscode --install-extension'\nvscode \"GitHub.codespaces\"\n\n# Set an environment variable to be used e.g. inside `brew bundle exec`\n# Mostly only `HOMEBREW_*` variables are passed through to other `brew` commands.\nENV[\"SOME_ENV_VAR\"] = \"some_value\"\n```\n\n## Versions and lockfiles\n\nHomebrew is a [rolling release](https://en.wikipedia.org/wiki/Rolling_release) package manager so it does not support installing arbitrary older versions of software.\nIf your software needs specific pinned versions, consider [`whalebrew`](https://github.com/whalebrew/whalebrew) lines in your `Brewfile` to install [Docker](https://www.docker.com) containers.\n\n## New Installers/Checkers/Dumpers\n\n`brew bundle` currently supports Homebrew, Homebrew Cask, Mac App Store, Whalebrew and Visual Studio Code.\n\nWe are interested in contributions for other installers/checkers/dumpers but they must:\n\n- be able to install software without user interaction\n- be able to check if software is installed\n- be able to dump the installed software to a format that can be stored in a `Brewfile`\n- not require `sudo` to install\n- be extremely widely used\n\nNote: based on these criteria, we would not accept e.g. Whalebrew (but have no plans to remove it.)\n\n## Tests\n\nTests can be run with `bundle install \u0026\u0026 bundle exec rspec`.\nSyntax linting can be run with `brew style homebrew/bundle`.\n\n## Copyright\n\nCopyright (c) Homebrew maintainers and Andrew Nesbitt. See [LICENSE](https://github.com/Homebrew/homebrew-bundle/blob/HEAD/LICENSE) for details.\n","funding_links":["https://github.com/sponsors/Homebrew","https://opencollective.com/homebrew","https://patreon.com/homebrew"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhomebrew%2Fhomebrew-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhomebrew%2Fhomebrew-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhomebrew%2Fhomebrew-bundle/lists"}