Mike McQuaid 222fe8ef0b
Homebrew 4.3.0 deprecation/disable/removals.
The usual pass of deprecating/disabling/removing code for the next
minor Homebrew release.
2024-05-07 12:18:04 +01:00

58 lines
707 B
Ruby

# typed: strict
module Cask
class Cask
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