mirror of
https://github.com/gosticks/brew.git
synced 2026-08-30 13:30:17 +00: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
|