Sha256: ab9cde7f083509abacee19d6265bc3dc91d15db94a374fcbee328beffce69f56

Contents?: true

Size: 370 Bytes

Versions: 4

Compression:

Stored size: 370 Bytes

Contents

module ContentCaching
  module Adapter
    class Abstract

      def initialize wrapper, options
        @wrapper = wrapper
        @options = options
      end

      def store content
        raise NotImplementedError
      end

      def url
        raise NotImplementedError
      end

      def delete
        raise NotImplementedError
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
content_caching-0.2.0 lib/content_caching/adapters/abstract.rb
content_caching-0.1.1 lib/content_caching/adapters/abstract.rb
content_caching-0.1.0 lib/content_caching/adapters/abstract.rb
content_caching-0.0.1 lib/content_caching/adapters/abstract.rb