2018-09-12 10:21:24 -04:00
|
|
|
# frozen_string_literal: true
|
2018-09-12 09:15:43 -04:00
|
|
|
|
|
|
|
require File.expand_path('lib/mutant/version', __dir__)
|
2012-07-23 10:37:44 -04:00
|
|
|
|
|
|
|
Gem::Specification.new do |gem|
|
|
|
|
gem.name = 'mutant'
|
2013-08-02 19:44:58 -04:00
|
|
|
gem.version = Mutant::VERSION.dup
|
2013-07-28 19:23:19 -04:00
|
|
|
gem.authors = ['Markus Schirp']
|
|
|
|
gem.email = ['mbj@schirp-dso.com']
|
2013-01-05 13:39:57 -05:00
|
|
|
gem.description = 'Mutation testing for ruby'
|
|
|
|
gem.summary = 'Mutation testing tool for ruby under MRI and Rubinius'
|
2012-07-23 10:37:44 -04:00
|
|
|
gem.homepage = 'https://github.com/mbj/mutant'
|
2013-07-14 16:34:19 -04:00
|
|
|
gem.license = 'MIT'
|
2012-07-23 10:37:44 -04:00
|
|
|
|
2016-03-20 17:20:01 -04:00
|
|
|
gem.require_paths = %w[lib]
|
2014-01-18 19:00:33 -05:00
|
|
|
|
2018-11-18 16:25:07 -05:00
|
|
|
exclusion = `git ls-files -- lib/mutant/{minitest,integration}`.split("\n")
|
2014-01-18 19:00:33 -05:00
|
|
|
|
2018-11-18 16:25:07 -05:00
|
|
|
gem.files = `git ls-files`.split("\n") - exclusion
|
2013-07-29 01:53:32 -04:00
|
|
|
gem.test_files = `git ls-files -- spec/{unit,integration}`.split("\n")
|
2016-08-01 15:18:59 -04:00
|
|
|
gem.extra_rdoc_files = %w[LICENSE]
|
2013-07-28 19:23:19 -04:00
|
|
|
gem.executables = %w[mutant]
|
2012-07-23 10:37:44 -04:00
|
|
|
|
2014-03-29 00:28:12 -04:00
|
|
|
gem.add_runtime_dependency('abstract_type', '~> 0.0.7')
|
|
|
|
gem.add_runtime_dependency('adamantium', '~> 0.2.0')
|
2015-09-04 16:20:56 -04:00
|
|
|
gem.add_runtime_dependency('anima', '~> 0.3.0')
|
2018-09-12 10:21:23 -04:00
|
|
|
gem.add_runtime_dependency('ast', '~> 2.2')
|
2014-04-20 14:27:05 -04:00
|
|
|
gem.add_runtime_dependency('concord', '~> 0.1.5')
|
2018-09-12 10:21:23 -04:00
|
|
|
gem.add_runtime_dependency('diff-lcs', '~> 1.3')
|
|
|
|
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')
|
2021-01-16 23:53:49 -05:00
|
|
|
gem.add_runtime_dependency('parser', '~> 2.7.2')
|
2018-09-12 10:21:23 -04:00
|
|
|
gem.add_runtime_dependency('procto', '~> 0.0.2')
|
2021-01-16 23:53:49 -05:00
|
|
|
gem.add_runtime_dependency('regexp_parser', '~> 1.8.2')
|
2018-12-04 08:18:04 -05:00
|
|
|
gem.add_runtime_dependency('unparser', '~> 0.4.2')
|
2013-07-28 19:23:19 -04:00
|
|
|
|
2018-11-11 16:17:09 -05:00
|
|
|
gem.add_development_dependency('parallel', '~> 1.3')
|
2012-07-23 10:37:44 -04:00
|
|
|
end
|