module Roda::RodaPlugins::Render::ClassMethods
def inherited(subclass)
them as necessary to prevent changes in the subclass
Copy the rendering options into the subclass, duping
def inherited(subclass) super opts = subclass.opts[:render] = subclass.opts[:render].dup opts[:cache] = thread_safe_cache if opts[:cache] opts.freeze end
def render_opts
def render_opts opts[:render] end