brew/Library/Homebrew/extend/cachable.rb

13 lines
142 B
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: true
# frozen_string_literal: true
module Cachable
def cache
@cache ||= {}
end
def clear_cache
cache.clear
end
end