class Reek::Report::HTMLReport
Saves the report as a HTML file
@public
Public Instance Methods
Source
# File lib/reek/report/html_report.rb, line 16 def show template_path = Pathname.new("#{__dir__}/html_report/html_report.html.erb") puts ERB.new(template_path.read).result(binding) end
@public