Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
e0aa9342
Commit
e0aa9342
authored
4 years ago
by
Markus Reiter
Browse files
Options
Downloads
Patches
Plain Diff
Ensure default cask tap is installed on `CaskUnavailableError`.
parent
7e3e86eb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Library/Homebrew/cask/cask.rbi
+7
-0
7 additions, 0 deletions
Library/Homebrew/cask/cask.rbi
Library/Homebrew/cli/named_args.rb
+18
-16
18 additions, 16 deletions
Library/Homebrew/cli/named_args.rb
Library/Homebrew/cmd/home.rb
+1
-1
1 addition, 1 deletion
Library/Homebrew/cmd/home.rb
with
26 additions
and
17 deletions
Library/Homebrew/cask/cask.rbi
0 → 100644
+
7
−
0
View file @
e0aa9342
# typed: strict
module Cask
class Cask
def homepage; end
end
end
This diff is collapsed.
Click to expand it.
Library/Homebrew/cli/named_args.rb
+
18
−
16
View file @
e0aa9342
...
...
@@ -37,11 +37,20 @@ module Homebrew
@to_formulae
||=
to_formulae_and_casks
(
only: :formula
).
freeze
end
# Convert named arguments to {Formula} or {Cask} objects.
# If both a formula and cask with the same name exist, returns
# the formula and prints a warning unless `only` is specified.
sig
do
params
(
only:
T
.
nilable
(
Symbol
),
ignore_unavailable:
T
.
nilable
(
T
::
Boolean
),
method:
T
.
nilable
(
Symbol
))
.
returns
(
T
::
Array
[
T
.
any
(
Formula
,
Keg
,
Cask
::
Cask
)])
end
def
to_formulae_and_casks
(
only:
nil
,
ignore_unavailable:
nil
,
method:
nil
)
@to_formulae_and_casks
||=
{}
@to_formulae_and_casks
[
only
]
||=
begin
to_objects
(
only:
only
,
ignore_unavailable:
ignore_unavailable
,
method:
method
).
freeze
end
@to_formulae_and_casks
[
only
]
||=
downcased_unique_named
.
flat_map
do
|
name
|
load_formula_or_cask
(
name
,
only:
only
,
method:
method
)
rescue
NoSuchKegError
,
FormulaUnavailableError
,
Cask
::
CaskUnavailableError
ignore_unavailable
?
[]
:
raise
end
.
uniq
.
freeze
end
def
to_formulae_to_casks
(
only:
nil
,
method:
nil
)
...
...
@@ -88,6 +97,12 @@ module Homebrew
begin
return
Cask
::
CaskLoader
.
load
(
name
,
config:
Cask
::
Config
.
from_args
(
@parent
))
rescue
Cask
::
CaskUnavailableError
=>
e
default_cask_tap
=
Tap
.
default_cask_tap
unless
default_cask_tap
.
installed?
default_cask_tap
.
install
retry
end
raise
e
if
only
==
:cask
end
end
...
...
@@ -111,19 +126,6 @@ module Homebrew
to_formulae_to_casks
(
only:
only
,
method: :resolve
)
end
# Convert named arguments to {Formula} or {Cask} objects.
# If both a formula and cask exist with the same name, returns the
# formula and prints a warning unless `only` is specified.
def
to_objects
(
only:
nil
,
ignore_unavailable:
nil
,
method:
nil
)
@to_objects
||=
{}
@to_objects
[
only
]
||=
downcased_unique_named
.
flat_map
do
|
name
|
load_formula_or_cask
(
name
,
only:
only
,
method:
method
)
rescue
NoSuchKegError
,
FormulaUnavailableError
,
Cask
::
CaskUnavailableError
ignore_unavailable
?
[]
:
raise
end
.
uniq
.
freeze
end
private
:to_objects
def
to_formulae_paths
to_paths
(
only: :formula
)
end
...
...
This diff is collapsed.
Click to expand it.
Library/Homebrew/cmd/home.rb
+
1
−
1
View file @
e0aa9342
...
...
@@ -35,7 +35,7 @@ module Homebrew
formula_or_cask
.
homepage
end
exec_browser
(
*
homepages
)
exec_browser
(
*
T
.
unsafe
(
homepages
)
)
end
def
name_of
(
formula_or_cask
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment