2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-02-07 23:25:02 -08:00
|
|
|
require "formula"
|
2019-04-17 18:25:08 +09:00
|
|
|
require "cli/parser"
|
2017-02-07 23:25:02 -08:00
|
|
|
|
|
|
|
module Homebrew
|
|
|
|
module_function
|
|
|
|
|
2018-07-30 18:25:38 +05:30
|
|
|
def formula_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
2018-09-28 21:39:52 +05:30
|
|
|
usage_banner <<~EOS
|
2019-01-30 21:33:03 +00:00
|
|
|
`formula` <formula>
|
2018-09-28 21:39:52 +05:30
|
|
|
|
2019-08-06 14:20:27 -04:00
|
|
|
Display the path where <formula> is located.
|
2018-09-28 21:39:52 +05:30
|
|
|
EOS
|
2020-07-30 18:40:10 +02:00
|
|
|
|
2020-03-04 17:28:24 +00:00
|
|
|
min_named :formula
|
2018-04-01 16:47:30 +05:30
|
|
|
end
|
2018-07-30 18:25:38 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def formula
|
2020-07-30 18:40:10 +02:00
|
|
|
args = formula_args.parse
|
2018-04-01 16:47:30 +05:30
|
|
|
|
2020-08-19 10:34:48 -04:00
|
|
|
args.named.to_formulae_paths.each(&method(:puts))
|
2017-02-07 23:25:02 -08:00
|
|
|
end
|
|
|
|
end
|