chiller
🍺 Helpful GitHub repository and Homebrew tools
Chiller is a collection of helpful tools for managing Homebrew taps via GitHub repositories. Install with brew install wcarhart/tools/chiller
.
Example
For example, suppose you had a new release in GitHub that you'd like to be available with Homebrew. You can easily update your new release in your tap:
pwd
# ~/mytap
chiller update mycooltool
# Updated formula for 'mycooltool' to latest (v2.0.0)
git push # push your local tap
brew upgrade mycooltool # upgrade mycooltool
Or, perhaps you'd like to change to a specific version:
pwd
# ~/mytap
chiller change --version v1.0.0 mycooltool
# Changed formula for 'mycooltool' to v1.0.0
git push # push your local tap
brew upgrade mycooltool # upgrade mycooltool
You can also easily generate SHA256 hashes:
chiller sha ./mycooltool
# 082784d0153fd64bedf80901391e53f0d8b1181f9394886b14154f81a4e48ffb
How does this work? To learn more, check out Usage.
Getting Started
For help installing chiller, check out Installation.
For command documentation, check out Usage.
Contributing
Chiller is under active development and welcomes contributions. If you see a bug or would like to request a new feature, please open a new issue on GitHub.
If you'd like to contribute to chiller, please use the following steps to get started.
Fork or clone the chiller repository.
git clone https://github.com/wcarhart/chiller.git ~/chiller
Implement your changes or updates.
Run
shellcheck
on the filechiller
locally.cd ~/chiller shellcheck chiller
Once
shellcheck
passes, open a PR on GitHub. The CI will run the same tests you ran locally to confirm that everything looks good.
License
Chiller is licensed under the MIT License.
MIT License
Copyright (c) 2020 Will Carhart
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.