Sha256: 4c91f2754b2927079ed3ea88991721ef7283a2e06cdfd12d7ac6b3a31870c686
Contents?: true
Size: 1004 Bytes
Versions: 1
Compression:
Stored size: 1004 Bytes
Contents
# -*- encoding: utf-8 -*- Gem::Specification.new do |gem| gem.authors = ["Iain Hecker"] gem.email = ["iain@iain.nl"] gem.description = %q{Use SimpleCov more easily as an RSpec formatter} gem.summary = %q{SpecCoverage allows you to use SimpleCov whenever you want, without having to put it in your spec_helper.rb file. It doesn’t output anything like you’d expect from a normal formatter, so you’re going to have to use another one to see your test output.} gem.homepage = 'https://github.com/iain/spec_coverage' gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } gem.files = `git ls-files`.split("\n") gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") gem.name = "spec_coverage" gem.require_paths = ['lib'] gem.version = '0.0.4' gem.add_dependency('rspec', ['~> 2.0']) gem.add_dependency('simplecov', ['~> 0.5.3']) gem.required_ruby_version = ">= 1.9" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spec_coverage-0.0.4 | spec_coverage.gemspec |