brew/Library/Homebrew/cmd/options.rb

71 lines
1.7 KiB
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: false
# frozen_string_literal: true
require "formula"
require "options"
2011-03-19 09:58:42 -07:00
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-07 21:59:04 +05:30
def options_args
Homebrew::CLI::Parser.new do
usage_banner <<~EOS
2019-08-06 14:17:17 -04:00
`options` [<options>] [<formula>]
2018-11-07 21:59:04 +05:30
Show install options specific to <formula>.
2018-11-07 21:59:04 +05:30
EOS
switch "--compact",
2019-04-30 08:44:35 +01:00
description: "Show all options on a single line separated by spaces."
2018-11-07 21:59:04 +05:30
switch "--installed",
description: "Show options for formulae that are currently installed."
switch "--all",
description: "Show options for all available formulae."
flag "--command=",
description: "Show options for the specified <command>."
2020-07-30 18:40:10 +02:00
conflicts "--installed", "--all", "--command"
2021-01-10 14:26:40 -05:00
named_args :formula
2018-11-07 21:59:04 +05:30
end
end
2013-06-26 15:08:45 -05:00
def options
2020-07-30 18:40:10 +02:00
args = options_args.parse
2018-11-07 21:59:04 +05:30
if args.all?
puts_options Formula.to_a.sort, args: args
2018-11-07 21:59:04 +05:30
elsif args.installed?
puts_options Formula.installed.sort, args: args
elsif !args.command.nil?
cmd_options = Commands.command_options(args.command)
if args.compact?
puts cmd_options.sort.map(&:first) * " "
else
cmd_options.sort.each { |option, desc| puts "#{option}\n\t#{desc}" }
puts
end
elsif args.no_named?
raise FormulaUnspecifiedError
2013-06-26 15:08:45 -05:00
else
puts_options args.named.to_formulae, args: args
end
2011-03-19 09:58:42 -07:00
end
def puts_options(formulae, args:)
2013-06-26 15:08:45 -05:00
formulae.each do |f|
next if f.options.empty?
2018-09-17 02:45:00 +02:00
2018-11-07 21:59:04 +05:30
if args.compact?
puts f.options.as_flags.sort * " "
2011-03-10 21:32:10 -08:00
else
2015-05-27 21:08:24 +08:00
puts f.full_name if formulae.length > 1
2020-08-17 19:53:37 +02:00
Options.dump_for_formula f
2011-03-10 21:32:10 -08:00
puts
end
end
end
end