-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add deprecate!
and disable!
to casks
#16292
Changes from all commits
036723a
641a804
53c1e6e
7eb3f1a
40d3ab6
c5f33aa
472dd95
6431822
c21b8bd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -331,6 +331,12 @@ def to_h | |
"conflicts_with" => conflicts_with, | ||
"container" => container&.pairs, | ||
"auto_updates" => auto_updates, | ||
"deprecated" => deprecated?, | ||
"deprecation_date" => deprecation_date, | ||
"deprecation_reason" => deprecation_reason, | ||
"disabled" => disabled?, | ||
"disable_date" => disable_date, | ||
"disable_reason" => disable_reason, | ||
Comment on lines
+334
to
+339
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we want to slim this, we could easily make the logic on the formule.brew.sh side be |
||
"tap_git_head" => tap_git_head, | ||
"languages" => languages, | ||
"ruby_source_path" => ruby_source_path, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we also need a new (strict?) audit for usage of
caveats :discontinued
.