aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend/cachable.rb
blob: 69d86ccb7b005172ad0717ba71d89bdc1b9e54ca (plain)
1
2
3
4
5
6
7
8
9
module Cachable
  def cache
    @cache ||= {}
  end

  def clear_cache
    cache.clear
  end
end