class Renderful::Provider::Base

Attributes

options[R]

Public Class Methods

new(options) click to toggle source
# File lib/renderful/provider/base.rb, line 8
def initialize(options)
  @options = options
end

Public Instance Methods

cache_keys_to_invalidate(_webhook_body) click to toggle source
# File lib/renderful/provider/base.rb, line 20
def cache_keys_to_invalidate(_webhook_body)
  fail NotImplementedError
end
cache_prefix() click to toggle source
# File lib/renderful/provider/base.rb, line 12
def cache_prefix
  fail NotImplementedError
end
find_entry(_entry_id) click to toggle source
# File lib/renderful/provider/base.rb, line 16
def find_entry(_entry_id)
  fail NotImplementedError
end