Add type signatures to Cask::Cache.

This commit is contained in:
Markus Reiter 2020-11-17 03:52:27 +01:00
parent 0b6c31fc70
commit a42cc9499e

View File

@ -6,9 +6,10 @@ module Cask
#
# @api private
module Cache
module_function
extend T::Sig
def path
sig { returns(Pathname) }
def self.path
@path ||= HOMEBREW_CACHE/"Cask"
end
end