Skip to content

Commit

Permalink
Merge pull request #18086 from Homebrew/sponsors-maintainers-man-comp…
Browse files Browse the repository at this point in the history
…letions
  • Loading branch information
MikeMcQuaid authored Aug 19, 2024
2 parents a2a92fa + 143b39c commit 5fb5467
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
2 changes: 2 additions & 0 deletions completions/bash/brew
Original file line number Diff line number Diff line change
Expand Up @@ -2345,6 +2345,7 @@ _brew_tc() {
;;
*) ;;
esac
__brew_complete_tapped
}

_brew_test() {
Expand Down Expand Up @@ -2414,6 +2415,7 @@ _brew_typecheck() {
;;
*) ;;
esac
__brew_complete_tapped
}

_brew_unbottled() {
Expand Down
2 changes: 2 additions & 0 deletions completions/fish/brew.fish
Original file line number Diff line number Diff line change
Expand Up @@ -1534,6 +1534,7 @@ __fish_brew_complete_arg 'tc' -l suggest-typed -d 'Try upgrading `typed` sigils'
__fish_brew_complete_arg 'tc' -l update -d 'Update RBI files'
__fish_brew_complete_arg 'tc' -l update-all -d 'Update all RBI files rather than just updated gems'
__fish_brew_complete_arg 'tc' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_arg 'tc' -a '(__fish_brew_suggest_taps_installed)'


__fish_brew_complete_cmd 'test' 'Run the test method provided by an installed formula'
Expand Down Expand Up @@ -1576,6 +1577,7 @@ __fish_brew_complete_arg 'typecheck' -l suggest-typed -d 'Try upgrading `typed`
__fish_brew_complete_arg 'typecheck' -l update -d 'Update RBI files'
__fish_brew_complete_arg 'typecheck' -l update-all -d 'Update all RBI files rather than just updated gems'
__fish_brew_complete_arg 'typecheck' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_arg 'typecheck' -a '(__fish_brew_suggest_taps_installed)'


__fish_brew_complete_cmd 'unbottled' 'Show the unbottled dependents of formulae'
Expand Down
8 changes: 6 additions & 2 deletions completions/zsh/_brew
Original file line number Diff line number Diff line change
Expand Up @@ -1902,7 +1902,9 @@ _brew_tc() {
'--suggest-typed[Try upgrading `typed` sigils]' \
'(--lsp)--update[Update RBI files]' \
'(--lsp)--update-all[Update all RBI files rather than just updated gems]' \
'--verbose[Make some output more verbose]'
'--verbose[Make some output more verbose]' \
- tap \
'*::tap:__brew_any_tap'
}

# brew test
Expand Down Expand Up @@ -1951,7 +1953,9 @@ _brew_typecheck() {
'--suggest-typed[Try upgrading `typed` sigils]' \
'(--lsp)--update[Update RBI files]' \
'(--lsp)--update-all[Update all RBI files rather than just updated gems]' \
'--verbose[Make some output more verbose]'
'--verbose[Make some output more verbose]' \
- tap \
'*::tap:__brew_any_tap'
}

# brew unbottled
Expand Down
2 changes: 1 addition & 1 deletion docs/Manpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -2762,7 +2762,7 @@ Run Homebrew's unit and integration tests.

: Randomise tests with the specified *`value`* instead of a random seed.

### `typecheck`, `tc` \[*`options`*\]
### `typecheck`, `tc` \[*`options`*\] \[*`tap`* ...\]

Check for typechecking errors using Sorbet.

Expand Down
2 changes: 1 addition & 1 deletion manpages/brew.1
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,7 @@ Run the test suite serially to find the \fIn\fP slowest tests\.
.TP
\fB\-\-seed\fP
Randomise tests with the specified \fIvalue\fP instead of a random seed\.
.SS "\fBtypecheck\fP, \fBtc\fP \fR[\fIoptions\fP]"
.SS "\fBtypecheck\fP, \fBtc\fP \fR[\fIoptions\fP] \fR[\fItap\fP \.\.\.]"
Check for typechecking errors using Sorbet\.
.TP
\fB\-\-fix\fP
Expand Down

0 comments on commit 5fb5467

Please sign in to comment.