mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
19 lines
253 B
Ruby
19 lines
253 B
Ruby
class Cask::Source::Gone
|
|
def self.me?(query)
|
|
Cask::WithoutSource.new(query).installed?
|
|
end
|
|
|
|
attr_reader :query
|
|
|
|
def initialize(query)
|
|
@query = query
|
|
end
|
|
|
|
def load
|
|
Cask::WithoutSource.new(query)
|
|
end
|
|
|
|
def to_s
|
|
''
|
|
end
|
|
end
|