2024-07-14 16:18:26 -04:00
|
|
|
# typed: strict
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "abstract_command"
|
2024-07-15 11:40:19 -04:00
|
|
|
require "shell_command"
|
2024-07-14 16:18:26 -04:00
|
|
|
|
|
|
|
module Homebrew
|
|
|
|
module Cmd
|
|
|
|
class VendorInstall < AbstractCommand
|
2024-07-15 11:40:19 -04:00
|
|
|
include ShellCommand
|
|
|
|
|
2024-07-14 16:18:26 -04:00
|
|
|
cmd_args do
|
|
|
|
description <<~EOS
|
|
|
|
Install Homebrew's portable Ruby.
|
|
|
|
EOS
|
|
|
|
|
|
|
|
named_args :target
|
|
|
|
|
|
|
|
hide_from_man_page!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|