Sha256: d540175ef4cafa50b1a8ebd21e218f7f99af7293a793052bf1f62624e93d0461

Contents?: true

Size: 826 Bytes

Versions: 1

Compression:

Stored size: 826 Bytes

Contents

# -*- encoding: utf-8 -*-

Gem::Specification.new do |gem|

  gem.authors = ["Ronen Barzel"]
  gem.email = ["ronen@barzel.org"]
  gem.description = "For some reason, there's no profile for a gem in SimpleCov, an excellent, simple Ruby 1.9 coverage tool. So this one defines one in about 8 lines of code."
  gem.summary = "SimpleCov profile for a standard Ruby Gem."
  gem.homepage = "http://github.com/ronen/simplecov-gem-profile"

  gem.name = "simplecov-gem-profile"
  gem.version = "1.0.0"
  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.require_paths = ["lib"]

  gem.add_dependency('simplecov', [">= 0.8.1"])
  gem.add_development_dependency 'rake'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simplecov-gem-profile-1.0.0 simplecov-gem-profile.gemspec