8c1fa8dace
* This infrastructure, especially the rake tasks should be gemified at some point in the future. I copied exactly the same bytes many times in the last month.
20 lines
665 B
Ruby
20 lines
665 B
Ruby
# -*- encoding: utf-8 -*-
|
|
|
|
require File.expand_path('../lib/mutant/version.rb', __FILE__)
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.name = 'mutant'
|
|
gem.version = Mutant::VERSION.dup
|
|
gem.authors = [ 'Markus Schirp' ]
|
|
gem.email = [ 'mbj@seonic.net' ]
|
|
gem.description = 'Mutation testing for ruby under rubinius'
|
|
gem.summary = gem.description
|
|
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")
|
|
gem.extra_rdoc_files = %w[TODO]
|
|
|
|
gem.add_runtime_dependency('backports', '~> 2.6.1')
|
|
end
|