Class: TwitterJekyll::NullCache Private
- Inherits:
-
Object
- Object
- TwitterJekyll::NullCache
- Defined in:
- lib/jekyll-twitter-plugin.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Cache class that does nothing
Instance Method Summary collapse
-
#initialize(*_args) ⇒ NullCache
constructor
private
A new instance of NullCache.
- #read(_key) ⇒ Object private
- #write(_key, _data) ⇒ Object private
Constructor Details
#initialize(*_args) ⇒ NullCache
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of NullCache.
60 |
# File 'lib/jekyll-twitter-plugin.rb', line 60 def initialize(*_args); end |
Instance Method Details
#read(_key) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
62 |
# File 'lib/jekyll-twitter-plugin.rb', line 62 def read(_key); end |
#write(_key, _data) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
64 |
# File 'lib/jekyll-twitter-plugin.rb', line 64 def write(_key, _data); end |