-
Notifications
You must be signed in to change notification settings - Fork 0
/
coveralls-ruby.gemspec
29 lines (24 loc) · 1.09 KB
/
coveralls-ruby.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
28
29
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'coveralls/version'
Gem::Specification.new do |gem|
gem.authors = ["Nick Merwin", "Wil Gieseler"]
gem.email = ["nick@lemurheavy.com", "supapuerco@gmail.com"]
gem.description = "A Ruby implementation of the Coveralls API."
gem.summary = "A Ruby implementation of the Coveralls API."
gem.homepage = "https://coveralls.io"
gem.license = "MIT"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "coveralls"
gem.require_paths = ["lib"]
gem.version = Coveralls::VERSION
gem.required_ruby_version = '>= 1.8.7'
gem.add_dependency 'json', '>= 1.8', '< 3'
gem.add_dependency 'simplecov', '0.17.0'
gem.add_dependency 'tins', '~> 1.6'
gem.add_dependency 'term-ansicolor', '~> 1.3'
gem.add_dependency 'thor', '>= 0.19.4', '< 2.0'
gem.add_development_dependency 'bundler', '~> 2.0'
end