module CacheWithSettings

Constants

VERSION

Public Class Methods

compose_key(key) click to toggle source
# File lib/cache_with_settings.rb, line 12
def self.compose_key(key)
  Array.wrap(key).concat(CacheWithSettings.cache_keys.call)
end
configure() { |self| ... } click to toggle source
# File lib/cache_with_settings/configuration.rb, line 7
def self.configure
  yield self
end