mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
18 lines
322 B
Ruby
18 lines
322 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
require "abstract_command"
|
|
require "shell_command"
|
|
|
|
module Homebrew
|
|
module Cmd
|
|
class Formulae < AbstractCommand
|
|
include ShellCommand
|
|
|
|
cmd_args do
|
|
description "List all locally installable formulae including short names."
|
|
end
|
|
end
|
|
end
|
|
end
|