2014-01-17 18:36:54 -05:00
|
|
|
# encoding: utf-8
|
|
|
|
#
|
|
|
|
require File.expand_path('../lib/mutant/version', __FILE__)
|
|
|
|
|
|
|
|
Gem::Specification.new do |gem|
|
|
|
|
gem.name = 'mutant-rspec'
|
|
|
|
gem.version = Mutant::VERSION.dup
|
|
|
|
gem.authors = ['Markus Schirp']
|
|
|
|
gem.email = ['mbj@schirp-dso.com']
|
|
|
|
gem.description = 'Rspec integration for mutant'
|
|
|
|
gem.summary = gem.description
|
|
|
|
gem.homepage = 'https://github.com/mbj/mutant'
|
|
|
|
gem.license = 'MIT'
|
|
|
|
|
|
|
|
gem.require_paths = %w[lib]
|
2014-06-30 09:55:58 -04:00
|
|
|
gem.files = `git ls-files -- lib/mutant/integration/rspec{,2,3}.rb`.split("\n")
|
2014-01-17 18:36:54 -05:00
|
|
|
gem.test_files = `git ls-files -- spec/{unit/mutant/rspec,integration/rspec}`.split("\n")
|
|
|
|
gem.extra_rdoc_files = %w[TODO LICENSE]
|
|
|
|
|
|
|
|
gem.add_runtime_dependency('mutant', "~> #{gem.version}")
|
2014-07-12 11:55:17 -04:00
|
|
|
gem.add_runtime_dependency('rspec-core', '>= 2.14.1', '< 3.1.0')
|
2014-01-17 18:36:54 -05:00
|
|
|
|
|
|
|
gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
|
|
|
|
end
|