Class: Tenjin::TemplateCache
- Inherits:
-
Object
- Object
- Tenjin::TemplateCache
show all
- Defined in:
- lib/tenjin.rb
Overview
abstract class for template cache
Instance Method Summary
collapse
Instance Method Details
#load(cachepath, timestamp = nil) ⇒ Object
996
997
998
|
# File 'lib/tenjin.rb', line 996
def load(cachepath, timestamp=nil)
raise NotImplementedError.new("#{self.class.name}#load(): not implemented yet.")
end
|
#save(cachepath, template) ⇒ Object
992
993
994
|
# File 'lib/tenjin.rb', line 992
def save(cachepath, template)
raise NotImplementedError.new("#{self.class.name}#save(): not implemented yet.")
end
|