mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 14:26:45 -06:00
13 lines
180 B
Ruby
13 lines
180 B
Ruby
class Cask::WithoutSource < Cask
|
|
def staged_path
|
|
caskroom_path.children.first
|
|
end
|
|
|
|
def to_s
|
|
"#{title} (!)"
|
|
end
|
|
|
|
def installed?
|
|
caskroom_path.exist?
|
|
end
|
|
end
|