homebrew-cask-versions/lib/cask/without_source.rb
Roland Walker 850e8cf3c0 remove support for legacy form destination_path
replaced by `staged_path`
2014-11-21 09:47:13 -05:00

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