Sha256: 878c3558e8e635e62caf0939050acac71a78d174f9769bfbfb016578502879b6
Contents?: true
Size: 1.68 KB
Versions: 3
Compression:
Stored size: 1.68 KB
Contents
# frozen_string_literal: true require File.expand_path('lib/mutant/version', __dir__) Gem::Specification.new do |gem| gem.name = 'mutant' gem.version = Mutant::VERSION.dup gem.authors = ['Markus Schirp'] gem.email = ['mbj@schirp-dso.com'] gem.description = 'Mutation testing for ruby' gem.summary = 'Mutation testing tool for ruby under MRI and Rubinius' gem.homepage = 'https://github.com/mbj/mutant' gem.license = 'MIT' gem.require_paths = %w[lib] exclusion = `git ls-files -- lib/mutant/{minitest,integration}`.split("\n") gem.files = `git ls-files`.split("\n") - exclusion gem.test_files = `git ls-files -- spec/{unit,integration}`.split("\n") gem.extra_rdoc_files = %w[LICENSE] gem.executables = %w[mutant] gem.add_runtime_dependency('abstract_type', '~> 0.0.7') gem.add_runtime_dependency('adamantium', '~> 0.2.0') gem.add_runtime_dependency('anima', '~> 0.3.0') gem.add_runtime_dependency('ast', '~> 2.2') gem.add_runtime_dependency('concord', '~> 0.1.5') gem.add_runtime_dependency('diff-lcs', '~> 1.3') gem.add_runtime_dependency('equalizer', '~> 0.0.9') gem.add_runtime_dependency('ice_nine', '~> 0.11.1') gem.add_runtime_dependency('memoizable', '~> 0.4.2') gem.add_runtime_dependency('morpher', '~> 0.2.6') gem.add_runtime_dependency('parser', '~> 2.5.1') gem.add_runtime_dependency('procto', '~> 0.0.2') gem.add_runtime_dependency('regexp_parser', '~> 1.2') gem.add_runtime_dependency('unparser', '~> 0.4.2') gem.add_development_dependency('devtools', '~> 0.1.22') gem.add_development_dependency('parallel', '~> 1.3') end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mutant-0.8.24 | mutant.gemspec |
mutant-0.8.23 | mutant.gemspec |
mutant-0.8.22 | mutant.gemspec |