2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-04-17 18:25:08 +09:00
|
|
|
require "cli/parser"
|
2018-11-10 22:54:32 +05:30
|
|
|
|
2015-08-09 22:42:46 +08:00
|
|
|
module Homebrew
|
2016-09-26 01:44:51 +02:00
|
|
|
module_function
|
|
|
|
|
2018-11-10 22:54:32 +05:30
|
|
|
def tap_pin_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
2019-03-30 10:17:34 +00:00
|
|
|
hide_from_man_page!
|
2018-11-10 22:54:32 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-09 22:42:46 +08:00
|
|
|
def tap_pin
|
2019-11-06 14:31:03 +00:00
|
|
|
odisabled "brew tap-pin user/tap",
|
|
|
|
"fully-scoped user/tap/formula naming"
|
2015-08-09 22:42:46 +08:00
|
|
|
end
|
|
|
|
end
|