mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
22 lines
372 B
Ruby
22 lines
372 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
require "cask/artifact/moved"
|
|
|
|
module Cask
|
|
module Artifact
|
|
# Artifact corresponding to the `suite` stanza.
|
|
class Suite < Moved
|
|
sig { returns(String) }
|
|
def self.english_name
|
|
"App Suite"
|
|
end
|
|
|
|
sig { returns(Symbol) }
|
|
def self.dirmethod
|
|
:appdir
|
|
end
|
|
end
|
|
end
|
|
end
|