Class: Sprockets::Cache::NullStore
- Inherits:
-
Object
- Object
- Sprockets::Cache::NullStore
- Defined in:
- lib/sprockets/cache/null_store.rb
Overview
Instance Method Summary collapse
-
#clear(options = nil) ⇒ Object
Public: Simulate clearing the cache.
-
#get(key) ⇒ Object
Public: Simulate a cache miss.
-
#inspect ⇒ Object
Public: Pretty inspect.
-
#set(key, value) ⇒ Object
Public: Simulate setting a value in the cache.
Instance Method Details
#clear(options = nil) ⇒ Object
Public: Simulate clearing the cache
Returns true
49 50 51 |
# File 'lib/sprockets/cache/null_store.rb', line 49 def clear(=nil) true end |
#get(key) ⇒ Object
Public: Simulate a cache miss.
This API should not be used directly, but via the Cache wrapper API.
key - String cache key.
Returns nil.
23 24 25 |
# File 'lib/sprockets/cache/null_store.rb', line 23 def get(key) nil end |
#inspect ⇒ Object
Public: Pretty inspect
Returns String.
42 43 44 |
# File 'lib/sprockets/cache/null_store.rb', line 42 def inspect "#<#{self.class}>" end |
#set(key, value) ⇒ Object
Public: Simulate setting a value in the cache.
This API should not be used directly, but via the Cache wrapper API.
key - String cache key. value - Object value.
Returns Object value.
35 36 37 |
# File 'lib/sprockets/cache/null_store.rb', line 35 def set(key, value) value end |