91
92
93
94
95
96
|
# File 'lib/cache_money.rb', line 91
def self.is_cached(options = {})
options.assert_valid_keys(:ttl, :repository, :version)
opts = options.dup
opts[:repository] = Cash.repository unless opts.has_key?(:repository)
Cash::Config.create(self, opts)
end
|