free_mutant/mutant.gemspec
Markus Schirp f318a7a68e Use to_source and ice_nine
* Adding to_source only to gemspec
* Use ice_nine to deep freeze the deep_cloned nodes that are subject of
  mutation to prevent bad mutators having a side effect.
2012-07-31 22:01:55 +02:00

22 lines
754 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_dependency('to_source', '~> 0.1.3')
gem.add_dependency('ice_nine', '~> 0.4.0')
gem.add_runtime_dependency('backports', '~> 2.6')
end