Sha256: 4bb450788114bb81e594c4c1f9ca01b4fdebbf26fe08aee68a661f46c3723117
Contents?: true
Size: 681 Bytes
Versions: 4
Compression:
Stored size: 681 Bytes
Contents
class StandardTemplate < MetricFu::Template def write report.each_pair do |section, contents| mf_debug section if template_exists?(section) create_instance_var(section, contents) html = erbify(section) fn = output_filename(section) MetricFu.report.save_output(html, MetricFu.output_directory, fn) end end # Instance variables we need should already be created from above if template_exists?('index') html = erbify('index') fn = output_filename('index') MetricFu.report.save_output(html, MetricFu.output_directory, fn) end end def this_directory File.dirname(__FILE__) end end
Version data entries
4 entries across 4 versions & 1 rubygems