module ContentCaching::Adapter::Implementation

Public Instance Methods

delete() click to toggle source
# File lib/content_caching/adapters/implementation.rb, line 13
def delete
  adapter.delete
end
store(content) click to toggle source
# File lib/content_caching/adapters/implementation.rb, line 5
def store content
  adapter.store content
end
url() click to toggle source
# File lib/content_caching/adapters/implementation.rb, line 9
def url
  adapter.url
end

Private Instance Methods

document_path() click to toggle source
# File lib/content_caching/adapters/implementation.rb, line 19
def document_path
  @wrapper.to_path
end