-
Notifications
You must be signed in to change notification settings - Fork 6
/
simplecov-teamcity-summary.gemspec
27 lines (24 loc) · 1.08 KB
/
simplecov-teamcity-summary.gemspec
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'simplecov-teamcity-summary/version'
Gem::Specification.new do |gem|
gem.name = "simplecov-teamcity-summary"
gem.version = SimpleCov::TeamcitySummary::VERSION
gem.authors = ["Ben Cochez"]
gem.email = ["[email protected]"]
gem.description = "Simplecov formatter that prints coverage summary information to display in TeamCity."
gem.summary = gem.description
gem.homepage = "https://github.com/benc/simplecov-teamcity-summary"
gem.license = 'MIT'
gem.files = `git ls-files`.split($/).reject do |filename|
filename.match(/^vendor\/cache/) || filename.match(/^doc/) || filename.match(/^.yardoc/)
end
gem.test_files = gem.files.grep(%r{^(spec)/})
gem.require_paths = ["lib"]
gem.add_development_dependency 'bundler', '~> 1.3'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_dependency 'simplecov'
end