forked from simplecov-ruby/simplecov-html
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsimplecov-html.gemspec
22 lines (19 loc) · 915 Bytes
/
simplecov-html.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$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 1.9+)
gem.summary = gem.description
gem.license = "MIT"
gem.required_ruby_version = ">= 1.8.7"
gem.add_development_dependency "bundler", "~> 1.9"
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