Sha256: c188f2596432c09a5af182ced304793d0b0df23ed8b1cf522860d4698bfeebf6

Contents?: true

Size: 1.4 KB

Versions: 1

Compression:

Stored size: 1.4 KB

Contents

module Coco

  # Public: I prepare the coverage/ directory for html files.
  class HtmlDirectory
    COVERAGE_DIR = 'coverage'

    # Public: Initialize a new HtmlDirectory object.
    def initialize
      css = File.join(Coco::ROOT, 'template/css')
      @css_files = Dir.glob(css + '/*')
      img = File.join(Coco::ROOT, 'template/img')
      @img_files = Dir.glob(img + '/*')
    end

    # Public: Get the name of the directory where the HTML report is
    # stored.
    #
    # Returns String.
    def coverage_dir
      COVERAGE_DIR
    end

    # Public: Delete the directory where the HTML report is stored.
    #
    # Returns nothing.
    def clean
      FileUtils.remove_dir(coverage_dir) if File.exist?(coverage_dir)
    end

    # Public: Make all directories needed to store the HTML report, then
    # copy media files (css, images, etc.).
    #
    # Returns nothing.
    def setup
      FileUtils.makedirs(css_dir)
      FileUtils.makedirs(image_dir)
      FileUtils.cp(@css_files, css_dir)
      FileUtils.cp(@img_files, image_dir)
    end

    # Public: I list the html files from the directory where the HTML
    # report is stored.
    #
    # Returns nothing.
    def list
      files = Dir.glob("#{coverage_dir}/*.html")
      files.map {|file| File.basename(file) }
    end

    private

    def css_dir
      "#{COVERAGE_DIR}/css"
    end

    def image_dir
      "#{COVERAGE_DIR}/img"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
coco-0.13.0 lib/coco/writer/html_directory.rb