Class: MetalArchives::Cache::Null
- Inherits:
-
Base
- Object
- Base
- MetalArchives::Cache::Null
show all
- Defined in:
- lib/metal_archives/cache/null.rb
Overview
Instance Attribute Summary
Attributes inherited from Base
#options
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #validate!
Instance Method Details
#[](_key) ⇒ Object
9
|
# File 'lib/metal_archives/cache/null.rb', line 9
def [](_key); end
|
#[]=(_key, _value) ⇒ Object
11
|
# File 'lib/metal_archives/cache/null.rb', line 11
def []=(_key, _value); end
|
#clear ⇒ Object
13
|
# File 'lib/metal_archives/cache/null.rb', line 13
def clear; end
|
#delete(_key) ⇒ Object
19
|
# File 'lib/metal_archives/cache/null.rb', line 19
def delete(_key); end
|
#include?(_key) ⇒ Boolean
15
16
17
|
# File 'lib/metal_archives/cache/null.rb', line 15
def include?(_key)
false
end
|