aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/artifact/suite.rb
blob: 59ae58cf1318e41cd26c376e03866124c3b8ecac (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.english_name
        "App Suite"
      end

      def self.dirmethod
        :appdir
      end
    end
  end
end