free_mutant/mutant.gemspec

30 lines
1.2 KiB
Ruby
Raw Normal View History

# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = 'mutant'
2013-06-30 08:57:49 -04:00
gem.version = '0.3.0.beta7'
gem.authors = [ 'Markus Schirp' ]
2013-06-09 18:14:32 -04:00
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'
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]
2013-06-28 17:47:45 -04:00
gem.executables = [ 'mutant', 'zombie' ]
2013-06-28 13:28:53 -04:00
gem.add_runtime_dependency('parser', '~> 2.0.beta9')
2013-06-28 17:23:33 -04:00
gem.add_runtime_dependency('unparser', '~> 0.0.6')
2013-06-23 16:10:32 -04:00
gem.add_runtime_dependency('ice_nine', '~> 0.8.0')
gem.add_runtime_dependency('descendants_tracker', '~> 0.0.1')
2013-06-23 16:10:32 -04:00
gem.add_runtime_dependency('adamantium', '~> 0.0.8')
gem.add_runtime_dependency('equalizer', '~> 0.0.5')
gem.add_runtime_dependency('inflecto', '~> 0.0.2')
2013-03-24 11:43:40 -04:00
gem.add_runtime_dependency('anima', '~> 0.0.6')
2013-05-21 20:40:33 -04:00
gem.add_runtime_dependency('concord', '~> 0.1.1')
2013-03-01 12:17:04 -05:00
gem.add_runtime_dependency('rspec', '~> 2.13.0')
end