From bd474f3302ad49a7e07db18e11bb7e546e89196e Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Fri, 13 Jun 2014 13:26:58 -0400 Subject: [PATCH] remove special properties of `caskroom_only` HOLD until #4865 is merged. After #4865, `caskroom_only` can be subclassed from Cask::Artifact::Base like any other artifact. It no longer has the special property of making `uninstall` stanzas work. This stanza has never been documented. It is possible that it will no longer be needed, after #4865 and subsequent cleanup on Casks that use this form. References: #4688 --- lib/cask/artifact/caskroom_only.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cask/artifact/caskroom_only.rb b/lib/cask/artifact/caskroom_only.rb index b5efc875951c9..44f6fb6c53cd8 100644 --- a/lib/cask/artifact/caskroom_only.rb +++ b/lib/cask/artifact/caskroom_only.rb @@ -1,4 +1,4 @@ -class Cask::Artifact::CaskroomOnly < Cask::Artifact::Pkg +class Cask::Artifact::CaskroomOnly < Cask::Artifact::Base def self.artifact_dsl_key :caskroom_only end