mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
46 lines
521 B
Ruby
46 lines
521 B
Ruby
# typed: strict
|
|
|
|
module Cask
|
|
class Cask
|
|
def appcast; end
|
|
|
|
def artifacts; end
|
|
|
|
def auto_updates; end
|
|
|
|
def caveats; end
|
|
|
|
def conflicts_with; end
|
|
|
|
def container; end
|
|
|
|
def desc; end
|
|
|
|
def depends_on; end
|
|
|
|
def homepage; end
|
|
|
|
def language; end
|
|
|
|
def languages; end
|
|
|
|
def name; end
|
|
|
|
def sha256; end
|
|
|
|
def staged_path; end
|
|
|
|
def url; end
|
|
|
|
def version; end
|
|
|
|
def appdir; end
|
|
|
|
def discontinued?; end
|
|
|
|
def livecheck; end
|
|
|
|
def livecheckable?; end
|
|
end
|
|
end
|