aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/source/gone.rb
blob: 1c744d0dbb68d3eea566cc9bb96db155e5d306b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module Hbc
  module Source
    class Gone
      def self.me?(query)
        WithoutSource.new(query).installed?
      end

      attr_reader :query

      def initialize(query)
        @query = query
      end

      def load
        WithoutSource.new(query)
      end

      def to_s
        ""
      end
    end
  end
end