method

render

rails latest stable - Class: PreviewDocs

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

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