brew/Library/Homebrew/cmd/readall.rb

60 lines
1.9 KiB
Ruby
Raw Normal View History

2020-11-25 17:03:23 +01:00
# typed: true
# frozen_string_literal: true
require "readall"
2019-04-17 18:25:08 +09:00
require "cli/parser"
require "env_config"
module Homebrew
2020-10-20 12:03:48 +02:00
extend T::Sig
2016-09-26 01:44:51 +02:00
module_function
2020-10-20 12:03:48 +02:00
sig { returns(CLI::Parser) }
2018-11-05 18:23:26 +05:30
def readall_args
Homebrew::CLI::Parser.new do
description <<~EOS
2020-06-16 20:35:40 +02:00
Import all items from the specified <tap>, or from all installed taps if none is provided.
This can be useful for debugging issues across all items when making
2018-11-05 18:23:26 +05:30
significant changes to `formula.rb`, testing the performance of loading
2020-06-16 20:35:40 +02:00
all items or checking if any current formulae/casks have Ruby issues.
2018-11-05 18:23:26 +05:30
EOS
switch "--aliases",
description: "Verify any alias symlinks in each tap."
switch "--syntax",
description: "Syntax-check all of Homebrew's Ruby files (if no `<tap>` is passed)."
switch "--eval-all",
description: "Evaluate all available formulae and casks, whether installed or not. " \
"Implied if HOMEBREW_EVAL_ALL is set."
switch "--no-simulate",
description: "Don't simulate other system configurations when checking formulae and casks."
2021-01-10 14:26:40 -05:00
named_args :tap
2018-11-05 18:23:26 +05:30
end
end
def readall
2020-07-30 18:40:10 +02:00
args = readall_args.parse
2018-11-05 18:23:26 +05:30
if args.syntax? && args.no_named?
scan_files = "#{HOMEBREW_LIBRARY_PATH}/**/*.rb"
ruby_files = Dir.glob(scan_files).grep_v(%r{/(vendor)/})
Homebrew.failed = true unless Readall.valid_ruby_syntax?(ruby_files)
end
options = { aliases: args.aliases?, no_simulate: args.no_simulate? }
taps = if args.no_named?
if !args.eval_all? && !Homebrew::EnvConfig.eval_all?
odisabled "brew readall", "brew readall --eval-all or HOMEBREW_EVAL_ALL"
end
Tap
else
2021-01-10 14:26:40 -05:00
args.named.to_installed_taps
end
taps.each do |tap|
Homebrew.failed = true unless Readall.valid_tap?(tap, options)
end
2010-07-18 14:20:54 -07:00
end
end