├── .editorconfig ├── .github └── workflows │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── Formula └── mas.rb ├── LICENSE.md └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-cli/homebrew-tap/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-cli/homebrew-tap/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-cli/homebrew-tap/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-cli/homebrew-tap/HEAD/.gitignore -------------------------------------------------------------------------------- /Formula/mas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-cli/homebrew-tap/HEAD/Formula/mas.rb -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-cli/homebrew-tap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mas-cli/homebrew-tap/HEAD/README.md --------------------------------------------------------------------------------