class Jekyll::Cache::MemoryStore

Public Class Methods

clear() click to toggle source
# File lib/jekyll/cache/memory_store.rb, line 11
def self.clear
  Cache.method(:clear).call
end
new(*args) click to toggle source

– @return [<EnvyGeeks::Cache>] the cache Overrides the default method so that we can simply

pass in the name of the directory we want to store
cache files inside of

@see goo.gl/3G35gw

Calls superclass method
# File lib/jekyll/cache/memory_store.rb, line 22
def initialize(*args)
  self.logger = Cache.logger
  super(*args)
end

Public Instance Methods

middleware() click to toggle source

# File lib/jekyll/cache/memory_store.rb, line 28
def middleware
  nil
end