mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
16 lines
211 B
Ruby
16 lines
211 B
Ruby
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
|