mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
12 lines
132 B
Ruby
12 lines
132 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "cask/all"
|
|
|
|
module Homebrew
|
|
module_function
|
|
|
|
def cask
|
|
Cask::Cmd.run(*ARGV)
|
|
end
|
|
end
|