This project is mirrored from https://github.com/Homebrew/brew.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- Jan 26, 2021
-
-
Rylan Polster authored
-
Rylan Polster authored
-
Rylan Polster authored
Don't have a period within first full sentence of the description
-
Seeker authored
livecheck: split cask versions into sub-versions
-
Seeker authored
version: add new `Version::Parser` class
-
Mike McQuaid authored
homebrew_bootsnap: fix brew tests.
-
- Jan 25, 2021
-
-
Mike McQuaid authored
Use one of the possible temp variables and `raise` if not.
-
Mike McQuaid authored
Add installed and outdated to cask json output
-
Mike McQuaid authored
Refactor `brew bump`
-
Mike McQuaid authored
dev-cmd/extract: Improve the usage instructions
-
Mike McQuaid authored
utils/curl: use specs when checking http content problems
-
Mike McQuaid authored
Fix zsh completions for upgrade and reinstall
-
Mike McQuaid authored
build(deps-dev): bump github-pages from 209 to 210 in /docs
-
Mike McQuaid authored
build(deps): bump rubocop-ast from 1.4.0 to 1.4.1 in /Library/Homebrew
-
Mike McQuaid authored
build(deps): bump sorbet from 0.5.6225 to 0.5.6231 in /Library/Homebrew
-
Mike McQuaid authored
UX fix - Properly allow quarantine in 'upgrade'
-
BrewTestBot authored
-
BrewTestBot authored
-
BrewTestBot authored
-
BrewTestBot authored
-
dependabot[bot] authored
Bumps [rubocop-ast](https://github.com/rubocop-hq/rubocop-ast) from 1.4.0 to 1.4.1. - [Release notes](https://github.com/rubocop-hq/rubocop-ast/releases) - [Changelog](https://github.com/rubocop-hq/rubocop-ast/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop-hq/rubocop-ast/compare/v1.4.0...v1.4.1 ) Signed-off-by:
dependabot[bot] <support@github.com>
-
dependabot[bot] authored
Bumps [sorbet](https://github.com/sorbet/sorbet) from 0.5.6225 to 0.5.6231. - [Release notes](https://github.com/sorbet/sorbet/releases) - [Commits](https://github.com/sorbet/sorbet/commits ) Signed-off-by:
dependabot[bot] <support@github.com>
-
dependabot[bot] authored
Bumps [github-pages](https://github.com/github/pages-gem) from 209 to 210. - [Release notes](https://github.com/github/pages-gem/releases) - [Commits](https://github.com/github/pages-gem/compare/v209...v210 ) Signed-off-by:
dependabot[bot] <support@github.com>
-
Muneeb Ahmed authored
-
Jonathan Chang authored
completions/zsh: fix broken zsh tab completion for `brew upgrade`
-
Seeker authored
-
Seeker authored
-
- Jan 24, 2021
-
-
nandahkrishna authored
Co-authored-by:
Sam Ford <1584702+samford@users.noreply.github.com>
-
nandahkrishna authored
-
nandahkrishna authored
-
nandahkrishna authored
-
nandahkrishna authored
-
Rylan Polster authored
-
Rylan Polster authored
-
Rylan Polster authored
Add brew release command
-
Rylan Polster authored
And commit `brew man` changes
-
Rylan Polster authored
-
Rylan Polster authored
-
Issy Long authored
- A friend got an error message when trying to use `brew extract` and it wasn't immediately obvious to me why. The usage banner only mentioned the "formula" argument, which they'd provided. This improves the error message when there aren't enough arguments so that others have a chance of figuring out how to use this command without having to look at the code for `extract_args`. Before: ``` ➜ brew extract --version='1.4' libftdi Usage: brew extract [--version=] [--force] formula ... [...] Error: Invalid usage: this command requires a formula argument ``` After: ``` ➜ brew extract --version='1.4' libftdi Usage: brew extract [options] formula tap [...] Error: Invalid usage: This command requires at least 2 named arguments. ``` - I don't like the "at least 2" phrasing here but that's a dive into the arg parsing code that I don't have time for right now. An alternative was `named_args [:formula, :destination_tap]`, but that gave the error message "requires formula or destination_tap" which wasn't great either. I also tried `min: 2, max: 2` and that was the same "at least 2" message.
-
- Jan 23, 2021
-
-
Rylan Polster authored
-