2020-08-26 03:13:59 +02:00

21 lines
321 B
Ruby

# 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