2013-08-03 01:44:58 +02:00
|
|
|
require File.expand_path('../lib/mutant/version', __FILE__)
|
2012-07-23 16:37:44 +02:00
|
|
|
|
|
|
|
Gem::Specification.new do |gem|
|
|
|
|
gem.name = 'mutant'
|
2013-08-03 01:44:58 +02:00
|
|
|
gem.version = Mutant::VERSION.dup
|
2013-07-28 16:23:19 -07:00
|
|
|
gem.authors = ['Markus Schirp']
|
|
|
|
gem.email = ['mbj@schirp-dso.com']
|
2013-01-05 19:39:57 +01:00
|
|
|
gem.description = 'Mutation testing for ruby'
|
|
|
|
gem.summary = 'Mutation testing tool for ruby under MRI and Rubinius'
|
2012-07-23 16:37:44 +02:00
|
|
|
gem.homepage = 'https://github.com/mbj/mutant'
|
2013-07-14 22:34:19 +02:00
|
|
|
gem.license = 'MIT'
|
2012-07-23 16:37:44 +02:00
|
|
|
|
2016-03-20 17:20:01 -04:00
|
|
|
gem.require_paths = %w[lib]
|
2014-01-19 01:00:33 +01:00
|
|
|
|
2016-03-20 17:20:01 -04:00
|
|
|
mutant_integration_files = `git ls-files -- lib/mutant/integration/*.rb`.split("\n")
|
2014-01-19 01:00:33 +01:00
|
|
|
|
2015-05-13 21:26:54 -04:00
|
|
|
gem.files = `git ls-files`.split("\n") - mutant_integration_files
|
2013-07-28 22:53:32 -07:00
|
|
|
gem.test_files = `git ls-files -- spec/{unit,integration}`.split("\n")
|
2012-12-28 18:38:39 +01:00
|
|
|
gem.extra_rdoc_files = %w[TODO LICENSE]
|
2013-07-28 16:23:19 -07:00
|
|
|
gem.executables = %w[mutant]
|
2012-07-23 16:37:44 +02:00
|
|
|
|
2015-05-31 20:44:09 +00:00
|
|
|
gem.required_ruby_version = '>= 2.1'
|
2013-12-31 19:22:25 +01:00
|
|
|
|
2016-01-24 09:15:57 +00:00
|
|
|
gem.add_runtime_dependency('parser', '~> 2.3.0', '>= 2.3.0.2')
|
2016-01-24 00:16:16 +00:00
|
|
|
gem.add_runtime_dependency('ast', '~> 2.2')
|
2014-03-29 04:28:12 +00:00
|
|
|
gem.add_runtime_dependency('diff-lcs', '~> 1.2')
|
2014-09-02 14:09:45 +00:00
|
|
|
gem.add_runtime_dependency('parallel', '~> 1.3')
|
2016-01-24 00:55:00 +00:00
|
|
|
gem.add_runtime_dependency('morpher', '~> 0.2.6')
|
2014-03-29 04:28:12 +00:00
|
|
|
gem.add_runtime_dependency('procto', '~> 0.0.2')
|
|
|
|
gem.add_runtime_dependency('abstract_type', '~> 0.0.7')
|
2016-01-24 00:16:16 +00:00
|
|
|
gem.add_runtime_dependency('unparser', '~> 0.2.5')
|
2014-12-03 18:50:46 +00:00
|
|
|
gem.add_runtime_dependency('ice_nine', '~> 0.11.1')
|
2014-03-29 04:28:12 +00:00
|
|
|
gem.add_runtime_dependency('adamantium', '~> 0.2.0')
|
|
|
|
gem.add_runtime_dependency('memoizable', '~> 0.4.2')
|
2014-04-06 21:01:13 +00:00
|
|
|
gem.add_runtime_dependency('equalizer', '~> 0.0.9')
|
2015-09-04 20:20:56 +00:00
|
|
|
gem.add_runtime_dependency('anima', '~> 0.3.0')
|
2014-04-20 18:27:05 +00:00
|
|
|
gem.add_runtime_dependency('concord', '~> 0.1.5')
|
2016-07-24 14:39:59 -07:00
|
|
|
gem.add_runtime_dependency('regexp_parser', '~> 0.3.6')
|
2013-07-28 16:23:19 -07:00
|
|
|
|
2016-01-24 09:15:57 +00:00
|
|
|
gem.add_development_dependency('devtools', '~> 0.1.4')
|
2015-09-10 13:02:04 +00:00
|
|
|
gem.add_development_dependency('bundler', '~> 1.10')
|
|
|
|
gem.add_development_dependency('ffi', '~> 1.9.6')
|
2012-07-23 16:37:44 +02:00
|
|
|
end
|