aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/artifact/suite.rb
blob: 35251f70c1f3034232c8ddd2fd853791a3b17e02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require "hbc/artifact/moved"

module Hbc
  module Artifact
    class Suite < Moved
      def self.artifact_english_name
        "App Suite"
      end

      def self.artifact_dirmethod
        :appdir
      end
    end
  end
end