render(file_name)
Renders the ERb contained in file_name relative to the template directory and returns the result based on the current context.
# File lib/rdoc/generator/darkfish.rb, line 670 def render file_name template_file = @template_dir + file_name template = template_for template_file, false, RDoc::ERBPartial template.filename = template_file.to_s template.result @context end