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]
|
2012-07-23 16:37:44 +02:00
|
|
|
gem.files = `git ls-files`.split("\n")
|
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-08-03 01:39:29 +02:00
|
|
|
gem.add_runtime_dependency('parser', '~> 2.0.0.pre6')
|
2013-07-31 22:09:05 +02:00
|
|
|
gem.add_runtime_dependency('unparser', '~> 0.0.14')
|
2013-06-23 22:10:32 +02:00
|
|
|
gem.add_runtime_dependency('ice_nine', '~> 0.8.0')
|
2012-09-16 00:51:47 +02:00
|
|
|
gem.add_runtime_dependency('descendants_tracker', '~> 0.0.1')
|
2013-07-04 12:15:21 +02:00
|
|
|
gem.add_runtime_dependency('adamantium', '~> 0.0.10')
|
2013-03-01 16:52:07 +01:00
|
|
|
gem.add_runtime_dependency('equalizer', '~> 0.0.5')
|
2013-01-24 20:50:40 +01:00
|
|
|
gem.add_runtime_dependency('inflecto', '~> 0.0.2')
|
2013-03-24 16:43:40 +01:00
|
|
|
gem.add_runtime_dependency('anima', '~> 0.0.6')
|
2013-07-31 22:09:40 +02:00
|
|
|
gem.add_runtime_dependency('concord', '~> 0.1.3')
|
2013-07-14 14:16:45 -07:00
|
|
|
gem.add_runtime_dependency('rspec', '~> 2.14.1')
|
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
|