2013-07-28 16:23:19 -07:00
|
|
|
# encoding: utf-8
|
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
|
|
|
|
2013-07-28 16:23:19 -07:00
|
|
|
gem.require_paths = %w[lib]
|
2014-01-19 01:00:33 +01:00
|
|
|
|
2014-06-30 13:55:58 +00:00
|
|
|
mutant_rspec_files = `git ls-files -- lib/mutant/integration/rspec{,2,3}.rb`.split("\n")
|
2014-01-19 01:00:33 +01:00
|
|
|
|
|
|
|
gem.files = `git ls-files`.split("\n") - mutant_rspec_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
|
|
|
|
2013-12-31 19:22:25 +01:00
|
|
|
gem.required_ruby_version = '>= 1.9.3'
|
|
|
|
|
2014-03-29 04:28:12 +00:00
|
|
|
gem.add_runtime_dependency('parser', '~> 2.1')
|
2014-04-22 16:09:35 +00:00
|
|
|
gem.add_runtime_dependency('ast', '~> 2.0')
|
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')
|
2014-04-22 17:57:11 +00:00
|
|
|
gem.add_runtime_dependency('morpher', '~> 0.2.3')
|
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')
|
2014-09-25 17:23:22 +00:00
|
|
|
gem.add_runtime_dependency('unparser', '~> 0.1.15')
|
2014-03-29 04:28:12 +00:00
|
|
|
gem.add_runtime_dependency('ice_nine', '~> 0.11.0')
|
|
|
|
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')
|
2014-03-29 04:28:12 +00:00
|
|
|
gem.add_runtime_dependency('anima', '~> 0.2.0')
|
2014-04-20 18:27:05 +00:00
|
|
|
gem.add_runtime_dependency('concord', '~> 0.1.5')
|
2013-07-28 16:23:19 -07:00
|
|
|
|
|
|
|
gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
|
2012-07-23 16:37:44 +02:00
|
|
|
end
|