2012-07-23 10:37:44 -04:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
|
|
|
Gem::Specification.new do |gem|
|
|
|
|
gem.name = 'mutant'
|
2013-01-18 15:56:57 -05:00
|
|
|
gem.version = '0.2.16'
|
2012-07-23 10:37:44 -04:00
|
|
|
gem.authors = [ 'Markus Schirp' ]
|
|
|
|
gem.email = [ 'mbj@seonic.net' ]
|
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'
|
|
|
|
|
|
|
|
gem.require_paths = [ 'lib' ]
|
|
|
|
gem.files = `git ls-files`.split("\n")
|
|
|
|
gem.test_files = `git ls-files -- spec`.split("\n")
|
2012-12-28 12:38:39 -05:00
|
|
|
gem.extra_rdoc_files = %w[TODO LICENSE]
|
2012-11-21 19:52:33 -05:00
|
|
|
gem.executables = [ 'mutant' ]
|
2012-07-23 10:37:44 -04:00
|
|
|
|
2013-01-09 17:41:12 -05:00
|
|
|
gem.add_runtime_dependency('to_source', '~> 0.2.14')
|
2012-12-21 04:42:26 -05:00
|
|
|
gem.add_runtime_dependency('ice_nine', '~> 0.6.0')
|
2012-09-15 18:51:47 -04:00
|
|
|
gem.add_runtime_dependency('descendants_tracker', '~> 0.0.1')
|
2013-01-20 08:32:15 -05:00
|
|
|
gem.add_runtime_dependency('backports', '~> 2.7.0')
|
2013-01-20 08:38:28 -05:00
|
|
|
gem.add_runtime_dependency('adamantium', '~> 0.0.5')
|
2012-12-12 14:53:34 -05:00
|
|
|
gem.add_runtime_dependency('mbj-inflector', '~> 0.0.1')
|
2012-09-15 18:51:47 -04:00
|
|
|
gem.add_runtime_dependency('equalizer', '~> 0.0.1')
|
2012-11-26 05:30:00 -05:00
|
|
|
gem.add_runtime_dependency('abstract_type', '~> 0.0.2')
|
2012-09-15 18:51:47 -04:00
|
|
|
gem.add_runtime_dependency('diff-lcs', '~> 1.1.3')
|
2012-07-23 10:37:44 -04:00
|
|
|
end
|