2023-12-17 19:07:37 -05:00

60 lines
729 B
Ruby

# typed: strict
module Cask
class Cask
def appcast; end
def appdir; end
def artifacts; end
def auto_updates; end
def caveats; end
def conflicts_with; end
def container; end
def depends_on; end
def desc; end
def discontinued?; end
def deprecated?; end
def deprecation_date; end
def deprecation_reason; end
def disabled?; end
def disable_date; end
def disable_reason; end
def homepage; end
def language; end
def languages; end
def livecheck; end
def livecheckable?; end
def name; end
def on_system_blocks_exist?; end
def sha256; end
def staged_path; end
def url; end
def version; end
end
end