method
render
v7.2.3 -
Show latest stable
- Class:
PreviewDocs
render(outdir)public
No documentation available.
# File tools/preview_docs.rb, line 31
def render(outdir)
template = File.open("tools/preview_docs/index.html.erb").read
result = ERB.new(template).result(binding)
File.open("#{outdir}/index.html", "w") do |f|
f.write result
end
end