2020-10-10 14:59:39 +02:00

22 lines
335 B
Ruby

# typed: true
# frozen_string_literal: true
require "cask/artifact/moved"
module Cask
module Artifact
# Artifact corresponding to the `suite` stanza.
#
# @api private
class Suite < Moved
def self.english_name
"App Suite"
end
def self.dirmethod
:appdir
end
end
end
end