free_mutant/mutant.gemspec

36 lines
1.5 KiB
Ruby
Raw Normal View History

# encoding: utf-8
#
require File.expand_path('../lib/mutant/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'mutant'
gem.version = Mutant::VERSION.dup
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'
gem.homepage = 'https://github.com/mbj/mutant'
2013-07-14 16:34:19 -04:00
gem.license = 'MIT'
gem.require_paths = %w[lib]
gem.files = `git ls-files`.split("\n")
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]
gem.executables = %w[mutant]
2013-12-26 16:17:07 -05:00
gem.add_runtime_dependency('parser', '~> 2.1.0')
gem.add_runtime_dependency('procto', '~> 0.0.2')
2013-11-01 03:24:52 -04:00
gem.add_runtime_dependency('abstract_type', '~> 0.0.7')
2013-12-31 11:03:18 -05:00
gem.add_runtime_dependency('unparser', '~> 0.1.6')
2013-09-15 01:19:39 -04:00
gem.add_runtime_dependency('ice_nine', '~> 0.9')
gem.add_runtime_dependency('descendants_tracker', '~> 0.0.1')
gem.add_runtime_dependency('adamantium', '~> 0.1')
2013-08-22 07:18:13 -04:00
gem.add_runtime_dependency('equalizer', '~> 0.0.7')
gem.add_runtime_dependency('inflecto', '~> 0.0.2')
2013-09-11 14:19:22 -04:00
gem.add_runtime_dependency('anima', '~> 0.1.1')
2013-08-22 07:18:13 -04:00
gem.add_runtime_dependency('concord', '~> 0.1.4')
gem.add_runtime_dependency('rspec', '~> 2.14.1')
gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
end