15 lines
238 B
Ruby
15 lines
238 B
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
module Cask
|
|
# Helper functions for the cask cache.
|
|
#
|
|
# @api private
|
|
module Cache
|
|
sig { returns(Pathname) }
|
|
def self.path
|
|
@path ||= HOMEBREW_CACHE/"Cask"
|
|
end
|
|
end
|
|
end
|