class Roda::RodaPlugins::Render::TemplateMtimeWrapper
def render(*args, &block)
If the template file exists and the modification time has
def render(*args, &block) res = nil modified = false if_modified do res = @template.render(*args, &block) modified = true end modified ? res : @template.render(*args, &block) end