This method is deprecated or moved on the latest stable version.
The last existing version (v2.3.8) is shown here.
compile(local_assigns)
private
Compile and evaluate the template’s code (if necessary)
# File actionpack/lib/action_view/renderable.rb, line 57
def compile(local_assigns)
render_symbol = method_name(local_assigns)
if !Base::CompiledTemplates.method_defined?(render_symbol) || recompile?
compile!(render_symbol, local_assigns)
end
end