2013-07-28 19:23:19 -04:00
|
|
|
# encoding: utf-8
|
2013-08-02 19:44:58 -04:00
|
|
|
#
|
|
|
|
require File.expand_path('../lib/mutant/version', __FILE__)
|
2012-07-23 10:37:44 -04:00
|
|
|
|
|
|
|
Gem::Specification.new do |gem|
|
|
|
|
gem.name = 'mutant'
|
2013-08-02 19:44:58 -04:00
|
|
|
gem.version = Mutant::VERSION.dup
|
2013-07-28 19:23:19 -04:00
|
|
|
gem.authors = ['Markus Schirp']
|
|
|
|
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'
|
2012-07-23 10:37:44 -04:00
|
|
|
gem.homepage = 'https://github.com/mbj/mutant'
|
2013-07-14 16:34:19 -04:00
|
|
|
gem.license = 'MIT'
|
2012-07-23 10:37:44 -04:00
|
|
|
|
2013-07-28 19:23:19 -04:00
|
|
|
gem.require_paths = %w[lib]
|
2012-07-23 10:37:44 -04:00
|
|
|
gem.files = `git ls-files`.split("\n")
|
2013-07-29 01:53:32 -04:00
|
|
|
gem.test_files = `git ls-files -- spec/{unit,integration}`.split("\n")
|
2012-12-28 12:38:39 -05:00
|
|
|
gem.extra_rdoc_files = %w[TODO LICENSE]
|
2013-07-28 19:23:19 -04:00
|
|
|
gem.executables = %w[mutant]
|
2012-07-23 10:37:44 -04:00
|
|
|
|
2013-08-02 19:39:29 -04:00
|
|
|
gem.add_runtime_dependency('parser', '~> 2.0.0.pre6')
|
2013-09-05 20:25:06 -04:00
|
|
|
gem.add_runtime_dependency('unparser', '~> 0.1.1')
|
2013-08-16 11:45:08 -04:00
|
|
|
gem.add_runtime_dependency('ice_nine', '~> 0.8')
|
2012-09-15 18:51:47 -04:00
|
|
|
gem.add_runtime_dependency('descendants_tracker', '~> 0.0.1')
|
2013-08-22 07:18:13 -04:00
|
|
|
gem.add_runtime_dependency('adamantium', '~> 0.1.0')
|
|
|
|
gem.add_runtime_dependency('equalizer', '~> 0.0.7')
|
2013-01-24 14:50:40 -05:00
|
|
|
gem.add_runtime_dependency('inflecto', '~> 0.0.2')
|
2013-09-08 10:30:03 -04:00
|
|
|
gem.add_runtime_dependency('anima', '~> 0.1.0')
|
2013-08-22 07:18:13 -04:00
|
|
|
gem.add_runtime_dependency('concord', '~> 0.1.4')
|
2013-07-14 17:16:45 -04:00
|
|
|
gem.add_runtime_dependency('rspec', '~> 2.14.1')
|
2013-07-28 19:23:19 -04:00
|
|
|
|
|
|
|
gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
|
2012-07-23 10:37:44 -04:00
|
|
|
end
|