2012-07-23 16:37:44 +02:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
|
|
|
Gem::Specification.new do |gem|
|
|
|
|
gem.name = 'mutant'
|
2012-12-08 14:54:00 +01:00
|
|
|
gem.version = '0.2.4'
|
2012-07-23 16:37:44 +02:00
|
|
|
gem.authors = [ 'Markus Schirp' ]
|
|
|
|
gem.email = [ 'mbj@seonic.net' ]
|
|
|
|
gem.description = 'Mutation testing for ruby under rubinius'
|
|
|
|
gem.summary = gem.description
|
|
|
|
gem.homepage = 'https://github.com/mbj/mutant'
|
|
|
|
|
|
|
|
gem.require_paths = [ 'lib' ]
|
|
|
|
gem.files = `git ls-files`.split("\n")
|
|
|
|
gem.test_files = `git ls-files -- spec`.split("\n")
|
|
|
|
gem.extra_rdoc_files = %w[TODO]
|
2012-11-22 01:52:33 +01:00
|
|
|
gem.executables = [ 'mutant' ]
|
2012-07-23 16:37:44 +02:00
|
|
|
|
2012-12-11 00:38:28 +01:00
|
|
|
gem.add_runtime_dependency('to_source', '~> 0.2.4')
|
2012-11-03 02:12:33 +01:00
|
|
|
gem.add_runtime_dependency('ice_nine', '~> 0.5.0')
|
2012-09-16 00:51:47 +02:00
|
|
|
gem.add_runtime_dependency('descendants_tracker', '~> 0.0.1')
|
|
|
|
gem.add_runtime_dependency('backports', '~> 2.6')
|
2012-11-18 20:49:07 +01:00
|
|
|
gem.add_runtime_dependency('adamantium', '~> 0.0.3')
|
2012-09-16 00:51:47 +02:00
|
|
|
gem.add_runtime_dependency('equalizer', '~> 0.0.1')
|
2012-11-26 11:30:00 +01:00
|
|
|
gem.add_runtime_dependency('abstract_type', '~> 0.0.2')
|
2012-09-16 00:51:47 +02:00
|
|
|
gem.add_runtime_dependency('diff-lcs', '~> 1.1.3')
|
2012-07-23 16:37:44 +02:00
|
|
|
end
|