KoanHealth/forget-me-not

View on GitHub
lib/forget-me-not/hash_cache.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ForgetMeNot
  class HashCache
    def fetch(key)
      data[key] ||= yield
    end

    private
    def data
      @data ||= {}
    end
  end
end