module Matador

Constants

VERSION

Public Class Methods

cache_store() click to toggle source
# File lib/matador.rb, line 11
def self.cache_store
  @@cache_store
end
cache_store=(cache_store_arg) click to toggle source
# File lib/matador.rb, line 7
def self.cache_store=(cache_store_arg)
  @@cache_store = cache_store_arg
end
fetch(key, options={}, &block) click to toggle source
# File lib/matador.rb, line 15
def self.fetch(key, options={}, &block)
  Matador::Fetcher.new(key, options, block).perform 
end