This document discusses parsing and rewriting Ruby templates in Rails. It describes the current approach of eager loading all views at boot time, which can be inefficient. An alternative proposed is to parse render calls and precompile templates to speed up the first request. The document explores using the RubyVM::AbstractSyntaxTree to parse templates and various Ruby parsers. It also considers rewriting local variable usage in templates to avoid local variable assignments.