Sha256: 0c76e028442bd40cce14ee17e519cadf5fc72416826bd3d144feb6774b36def6
Contents?: true
Size: 515 Bytes
Versions: 3
Compression:
Stored size: 515 Bytes
Contents
module Fulmar module Infrastructure module Service module Cache # Implements no cache handling class DummyCacheService # @param [Fulmar::Infrastructure::Service::ShellService] shell # @param [Hash] config def initialize(shell, config) @remote_shell = shell @config = config end def clear true end def warmup true end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems