mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

- Both formulae and casks can have caveats, but only formulae caveats were shown at the end of a bulk install/upgrade/reinstall operation via `Homebrew.messages.record_caveats`. This fixes that to show Cask caveats too, for consistency (scrolling up all of the multi-formulae-and-casks output to see caveats is time-consuming and users might miss them). - In doing this I had to change how `Messages#record_caveats` works since the cask name is just a string, not an object.
52 lines
1.2 KiB
Ruby
52 lines
1.2 KiB
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
# A {Messages} object collects messages that may need to be displayed together
|
|
# at the end of a multi-step `brew` command run.
|
|
class Messages
|
|
extend T::Sig
|
|
|
|
attr_reader :caveats, :formula_count, :install_times
|
|
|
|
sig { void }
|
|
def initialize
|
|
@caveats = []
|
|
@formula_count = 0
|
|
@install_times = []
|
|
end
|
|
|
|
def record_caveats(package, caveats)
|
|
@caveats.push(package: package, caveats: caveats)
|
|
end
|
|
|
|
def formula_installed(f, elapsed_time)
|
|
@formula_count += 1
|
|
@install_times.push(formula: f.name, time: elapsed_time)
|
|
end
|
|
|
|
def display_messages(force_caveats: false, display_times: false)
|
|
display_caveats(force: force_caveats)
|
|
display_install_times if display_times
|
|
end
|
|
|
|
def display_caveats(force: false)
|
|
return if @formula_count.zero?
|
|
return if @formula_count == 1 && !force
|
|
return if @caveats.empty?
|
|
|
|
oh1 "Caveats"
|
|
@caveats.each do |c|
|
|
ohai c[:package], c[:caveats]
|
|
end
|
|
end
|
|
|
|
def display_install_times
|
|
return if install_times.empty?
|
|
|
|
oh1 "Installation times"
|
|
install_times.each do |t|
|
|
puts format("%<formula>-20s %<time>10.3f s", t)
|
|
end
|
|
end
|
|
end
|