This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
assemble_template(body_file)
public
Creates a template from its components and the body_file.
For backwards compatibility, if body_file contains “<html”
the body is used directly.
# File lib/rdoc/generator/darkfish.rb, line 647
def assemble_template body_file
body = body_file.read
return body if body =~ /<html/
head_file = @template_dir + '_head.rhtml'
footer_file = @template_dir + '_footer.rhtml'
<!DOCTYPE html><html><head>#{head_file.read}#{body}#{footer_file.read}
end