Add initial mutant-rspec.gemspec

This commit is contained in:
Markus Schirp 2014-01-18 00:36:54 +01:00
parent faa79a2f0a
commit 8d62d2f5f9

24
mutant-rspec.gemspec Normal file
View file

@ -0,0 +1,24 @@
# 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]
gem.files = `git ls-files -- lib/mutant{-,/}rspec.rb lib/mutant/rspec`.split("\n")
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}")
gem.add_runtime_dependency('rspec', '~> 2.14.1')
gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
end