mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-19 22:16:33 -06:00
* `app`, `suite`, and `artifact no longer implemented as synonyms for `link` * backward-compatible code/comments removed * creates class `Cask::Artifact::Suite` * updates `brew cask info` to show specific artifact type * fixes stray "Generic artifact" messages
9 lines
174 B
Ruby
9 lines
174 B
Ruby
class Cask::Artifact::Artifact < Cask::Artifact::Symlinked
|
|
def self.artifact_english_name
|
|
'Generic artifact'
|
|
end
|
|
|
|
def self.artifact_dirmethod
|
|
:appdir
|
|
end
|
|
end
|