class ContentCaching::Adapter::Abstract

Public Class Methods

new(wrapper, options) click to toggle source
# File lib/content_caching/adapters/abstract.rb, line 5
def initialize wrapper, options
  @wrapper = wrapper
  @options = options
end

Public Instance Methods

delete() click to toggle source
# File lib/content_caching/adapters/abstract.rb, line 18
def delete
  raise NotImplementedError
end
store(content) click to toggle source
# File lib/content_caching/adapters/abstract.rb, line 10
def store content
  raise NotImplementedError
end
url() click to toggle source
# File lib/content_caching/adapters/abstract.rb, line 14
def url
  raise NotImplementedError
end