module Roda::RodaPlugins::RenderEach::ClassMethods

  1. lib/roda/plugins/render_each.rb

Methods

Public Instance

  1. freeze

Public Instance methods

freeze()

If using compiled methods and assuming fixed locals, optimize _cached_render_each_template_method.

[show source]
   # File lib/roda/plugins/render_each.rb
77 def freeze
78   if render_opts[:assume_fixed_locals] && !render_opts[:check_template_mtime]
79     include AssumeFixedLocalsInstanceMethods
80   end
81 
82   super
83 end