-
Notifications
You must be signed in to change notification settings - Fork 27
/
undercover.gemspec
34 lines (28 loc) · 1.09 KB
/
undercover.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
34
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'undercover/version'
Gem::Specification.new do |spec|
spec.name = 'undercover'
spec.version = Undercover::VERSION
spec.authors = ['Jan Grodowski']
spec.email = ['[email protected]']
spec.summary = 'Actionable code coverage - detects untested ' \
'code blocks in recent changes'
spec.homepage = 'https://github.com/grodowski/undercover'
spec.license = 'MIT'
spec.metadata = {
'rubygems_mfa_required' => 'true'
}
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(/^(test|spec|features)\//)
end
spec.bindir = 'bin'
spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.0.0'
spec.add_dependency 'bigdecimal'
spec.add_dependency 'imagen', '>= 0.2.0'
spec.add_dependency 'rainbow', '>= 2.1', '< 4.0'
spec.add_dependency 'rugged', '>= 0.27', '< 1.8'
end