2013-07-28 19:23:19 -04:00
|
|
|
# encoding: utf-8
|
2013-08-02 19:44:58 -04:00
|
|
|
#
|
|
|
|
require File.expand_path('../lib/mutant/version', __FILE__)
|
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
|
|
|
|
2013-07-28 19:23:19 -04:00
|
|
|
gem.require_paths = %w[lib]
|
2014-01-18 19:00:33 -05:00
|
|
|
|
2014-06-30 09:55:58 -04:00
|
|
|
mutant_rspec_files = `git ls-files -- lib/mutant/integration/rspec{,2,3}.rb`.split("\n")
|
2014-01-18 19:00:33 -05:00
|
|
|
|
|
|
|
gem.files = `git ls-files`.split("\n") - mutant_rspec_files
|
2013-07-29 01:53:32 -04:00
|
|
|
gem.test_files = `git ls-files -- spec/{unit,integration}`.split("\n")
|
2012-12-28 12:38:39 -05:00
|
|
|
gem.extra_rdoc_files = %w[TODO LICENSE]
|
2013-07-28 19:23:19 -04:00
|
|
|
gem.executables = %w[mutant]
|
2012-07-23 10:37:44 -04:00
|
|
|
|
2014-10-05 11:07:59 -04:00
|
|
|
gem.required_ruby_version = '>= 2.0.0'
|
2013-12-31 13:22:25 -05:00
|
|
|
|
2014-11-07 18:40:23 -05:00
|
|
|
gem.add_runtime_dependency('parser', '~> 2.2.pre.7')
|
2014-04-22 12:09:35 -04:00
|
|
|
gem.add_runtime_dependency('ast', '~> 2.0')
|
2014-03-29 00:28:12 -04:00
|
|
|
gem.add_runtime_dependency('diff-lcs', '~> 1.2')
|
2014-09-02 10:09:45 -04:00
|
|
|
gem.add_runtime_dependency('parallel', '~> 1.3')
|
2014-04-22 13:57:11 -04:00
|
|
|
gem.add_runtime_dependency('morpher', '~> 0.2.3')
|
2014-03-29 00:28:12 -04:00
|
|
|
gem.add_runtime_dependency('procto', '~> 0.0.2')
|
|
|
|
gem.add_runtime_dependency('abstract_type', '~> 0.0.7')
|
2015-01-12 13:30:33 -05:00
|
|
|
gem.add_runtime_dependency('unparser', '~> 0.2.0')
|
2014-12-03 13:50:46 -05:00
|
|
|
gem.add_runtime_dependency('ice_nine', '~> 0.11.1')
|
2014-03-29 00:28:12 -04:00
|
|
|
gem.add_runtime_dependency('adamantium', '~> 0.2.0')
|
|
|
|
gem.add_runtime_dependency('memoizable', '~> 0.4.2')
|
2014-04-06 17:01:13 -04:00
|
|
|
gem.add_runtime_dependency('equalizer', '~> 0.0.9')
|
2014-03-29 00:28:12 -04:00
|
|
|
gem.add_runtime_dependency('anima', '~> 0.2.0')
|
2014-04-20 14:27:05 -04:00
|
|
|
gem.add_runtime_dependency('concord', '~> 0.1.5')
|
2013-07-28 19:23:19 -04:00
|
|
|
|
|
|
|
gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
|
2014-10-17 17:51:36 -04:00
|
|
|
gem.add_development_dependency('ffi', '~> 1.9.6')
|
2012-07-23 10:37:44 -04:00
|
|
|
end
|