From f06f83ca69f53a272daa1a3874201a34f2298f43 Mon Sep 17 00:00:00 2001 From: Seeker Date: Thu, 3 Sep 2020 20:55:33 -0700 Subject: [PATCH] Rename `livecheck_formulae_and_casks` to `run_checks` --- Library/Homebrew/dev-cmd/livecheck.rb | 2 +- Library/Homebrew/livecheck/livecheck.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/dev-cmd/livecheck.rb b/Library/Homebrew/dev-cmd/livecheck.rb index c1d2cfc206..47d03bf50e 100644 --- a/Library/Homebrew/dev-cmd/livecheck.rb +++ b/Library/Homebrew/dev-cmd/livecheck.rb @@ -80,6 +80,6 @@ module Homebrew raise UsageError, "No formulae or casks to check." if formulae_and_casks_to_check.blank? - Livecheck.livecheck_formulae_and_casks(formulae_and_casks_to_check, args) + Livecheck.run_checks(formulae_and_casks_to_check, args) end end diff --git a/Library/Homebrew/livecheck/livecheck.rb b/Library/Homebrew/livecheck/livecheck.rb index 29b3a5c076..737b139e4c 100644 --- a/Library/Homebrew/livecheck/livecheck.rb +++ b/Library/Homebrew/livecheck/livecheck.rb @@ -44,7 +44,7 @@ module Homebrew # Executes the livecheck logic for each formula/cask in the # `formulae_and_casks_to_check` array and prints the results. # @return [nil] - def livecheck_formulae_and_casks(formulae_and_casks_to_check, args) + def run_checks(formulae_and_casks_to_check, args) # Identify any non-homebrew/core taps in use for current formulae non_core_taps = {} formulae_and_casks_to_check.each do |fc|