File: cache.rb

package info (click to toggle)
ruby-swd 2.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: ruby: 510; makefile: 6
file content (7 lines) | stat: -rw-r--r-- 93 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
module SWD
  class Cache
    def fetch(cache_key, options = {})
      yield
    end
  end
end