module FidoMetadata
A very simple cache story for the test suite that mimics the ActiveSupport::Cache::Store interface
Constants
- VERSION
Public Class Methods
configuration()
click to toggle source
# File lib/fido_metadata.rb, line 7 def self.configuration @configuration ||= begin c = Configuration.new c.race_condition_ttl = 1 c end end
configure() { |configuration| ... }
click to toggle source
# File lib/fido_metadata.rb, line 15 def self.configure yield(configuration) end