-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathsimplecov-html.gemspec
More file actions
34 lines (29 loc) · 999 Bytes
/
simplecov-html.gemspec
File metadata and controls
34 lines (29 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
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/simplecov-ruby/simplecov-html"
gem.summary = "Default HTML formatter for SimpleCov code coverage tool"
gem.description = gem.summary
gem.license = "MIT"
gem.required_ruby_version = ">= 2.7"
gem.metadata = {
"homepage_uri" => gem.homepage,
"source_code_uri" => gem.homepage,
"changelog_uri" => "#{gem.homepage}/releases",
"bug_tracker_uri" => "#{gem.homepage}/issues",
"rubygems_mfa_required" => "true",
}
gem.files = Dir[
"lib/**/*.rb",
"public/**/*",
"views/**/*.erb",
"LICENSE"
]
gem.require_paths = ["lib"]
end