mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
17 lines
192 B
Ruby
17 lines
192 B
Ruby
# 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
|