forked from lemurheavy/coveralls-ruby
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcoveralls-ruby.gemspec
33 lines (26 loc) · 1.4 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
30
31
32
33
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'coveralls/version'
Gem::Specification.new do |gem|
gem.authors = ['Nick Merwin', 'Wil Gieseler', 'Geremia Taglialatela']
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 = Dir.glob('{CHANGELOG.md,LICENSE,README.md,lib/**/*.rb,bin/coveralls}', File::FNM_DOTMATCH)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.name = 'coveralls_reborn'
gem.require_paths = ['lib']
gem.version = Coveralls::VERSION
gem.metadata['rubygems_mfa_required'] = 'true'
gem.metadata['bug_tracker_uri'] = 'https://github.com/tagliala/coveralls-ruby-reborn/issues'
gem.metadata['changelog_uri'] = 'https://github.com/tagliala/coveralls-ruby-reborn/blob/main/CHANGELOG.md'
gem.metadata['source_code_uri'] = 'https://github.com/tagliala/coveralls-ruby-reborn'
gem.required_ruby_version = '>= 2.6'
gem.add_dependency 'simplecov', '~> 0.22.0'
gem.add_dependency 'term-ansicolor', '~> 1.7'
gem.add_dependency 'thor', '~> 1.2'
gem.add_dependency 'tins', '~> 1.32'
end