Sha256: 2a4c44e89c349b18bddb7d21c5229bf642212dc2d6a39272757f45e34492aa89
Contents?: true
Size: 891 Bytes
Versions: 7
Compression:
Stored size: 891 Bytes
Contents
# frozen_string_literal: true $LOAD_PATH.push File.expand_path("../lib", __FILE__) require "simplecov-html/version" Gem::Specification.new do |gem| gem.name = "simplecov-html" gem.version = SimpleCov::Formatter::HTMLFormatter::VERSION gem.platform = Gem::Platform::RUBY gem.authors = ["Christoph Olszowka"] gem.email = ["christoph at olszowka de"] gem.homepage = "https://github.com/colszowka/simplecov-html" gem.description = %(Default HTML formatter for SimpleCov code coverage tool for ruby 2.4+) gem.summary = gem.description gem.license = "MIT" gem.required_ruby_version = "~> 2.4" gem.files = `git ls-files`.split("\n") gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } gem.require_paths = ["lib"] end
Version data entries
7 entries across 7 versions & 2 rubygems