This repository has been archived by the owner on Aug 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmutest.gemspec
41 lines (35 loc) · 1.75 KB
/
mutest.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
35
36
37
38
39
40
41
require File.expand_path('../lib/mutest/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'mutest'
gem.version = Mutest::VERSION.dup
gem.authors = ['Daniel Gollahon', 'John Backus']
gem.email = ['[email protected]', '[email protected]']
gem.description = 'Mutation testing for ruby'
gem.summary = gem.description
gem.homepage = 'https://github.com/backus/mutest'
gem.license = 'MIT'
gem.require_paths = %w[lib]
mutest_integration_files =
`git ls-files -- lib/mutest/integration/*.rb`.split("\n")
.reject { |filename| filename =~ %r{/null.rb\z} }
gem.files = `git ls-files`.split("\n") - mutest_integration_files
gem.test_files = `git ls-files -- spec/{unit,integration}`.split("\n")
gem.extra_rdoc_files = %w[LICENSE]
gem.executables = %w[mutest]
gem.required_ruby_version = '>= 2.3'
gem.add_runtime_dependency('abstract_type', '~> 0.0.7')
gem.add_runtime_dependency('adamantium', '~> 0.2.0')
gem.add_runtime_dependency('anima', '~> 0.3.0')
gem.add_runtime_dependency('ast', '~> 2.2')
gem.add_runtime_dependency('concord', '~> 0.1.5')
gem.add_runtime_dependency('diff-lcs', '~> 1.2')
gem.add_runtime_dependency('equalizer', '~> 0.0.9')
gem.add_runtime_dependency('ice_nine', '~> 0.11.1')
gem.add_runtime_dependency('memoizable', '~> 0.4.2')
gem.add_runtime_dependency('morpher', '~> 0.2.6')
gem.add_runtime_dependency('parallel', '~> 1.3')
gem.add_runtime_dependency('parser', '>= 2.5.0.1', '< 2.6')
gem.add_runtime_dependency('procto', '~> 0.0.2')
gem.add_runtime_dependency('regexp_parser', '~> 0.4.9')
gem.add_runtime_dependency('unparser', '~> 0.4.2')
end