2021-01-05 09:11:31 -08:00

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