mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
18 lines
207 B
Ruby
18 lines
207 B
Ruby
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
require "cask/cmd"
|
|
|
|
module Homebrew
|
|
module_function
|
|
|
|
def cask_args
|
|
Cask::Cmd.parser
|
|
end
|
|
|
|
def cask
|
|
ARGV.freeze
|
|
Cask::Cmd.run(*ARGV)
|
|
end
|
|
end
|