Sha256: 66c698e8efd30de6f40fbb88fb8aa2d705f9714486191f16deb37a4d2dbab2c2

Contents?: true

Size: 816 Bytes

Versions: 5

Compression:

Stored size: 816 Bytes

Contents

# frozen_string_literal: true

require "erb"
require_relative "resume_yaml_formatter"
require_relative "../../application"

##
# HTMLFormatter class receive a [Report] and generates HTML output.
class ResumeHTMLFormatter < ResumeYAMLFormatter
  def initialize(report)
    super(report)
    @data = {}
    filepath = File.join(File.dirname(__FILE__), "..", "..", "files", "template", "resume.html")
    @template = File.read(filepath)
  end

  def process
    build_data
    build_page
    deinit
  end

  def build_page
    render = ERB.new(@template)
    w render.result(binding)
  end

  private

  def config
    @data[:config]
  end

  def cases
    @data[:cases]
  end

  def results
    @data[:results]
  end

  def hall_of_fame
    @data[:hall_of_fame]
  end

  def version
    Application::VERSION
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
teuton-2.3.11 lib/teuton/report/formatter/resume_html_formatter.rb
teuton-2.3.10 lib/teuton/report/formatter/resume_html_formatter.rb
teuton-2.3.9 lib/teuton/report/formatter/resume_html_formatter.rb
teuton-2.3.8 lib/teuton/report/formatter/resume_html_formatter.rb
teuton-2.3.7 lib/teuton/report/formatter/resume_html_formatter.rb