class Roda::RodaPlugins::Render::TemplateMtimeWrapper

def define_compiled_method_cache_value(roda_class, method_name, locals_keys=EMPTY_ARRAY)

Returns an appropriate value for the template method cache.
def define_compiled_method_cache_value(roda_class, method_name, locals_keys=EMPTY_ARRAY)
  if compiled_method = define_compiled_method(roda_class, method_name, locals_keys)
    [compiled_method, false].freeze
  else
    compiled_method
  end
end