12 lines
128 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-08-09 01:34:07 +02:00
require "cask"
2017-03-06 11:39:07 +01:00
module Homebrew
module_function
def cask
2018-09-06 08:29:14 +02:00
Cask::Cmd.run(*ARGV)
2017-03-06 11:39:07 +01:00
end
end