Sha256: 883c5c5b2d1851674c109e82d881e13ecbd9fbef7df9e194418b136850688a55

Contents?: true

Size: 1.04 KB

Versions: 3

Compression:

Stored size: 1.04 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "codeclimate-test-reporter"

Gem::Specification.new do |spec|
  spec.name          = "codeclimate-test-reporter"
  spec.version       = CodeClimate::TestReporter::VERSION
  spec.authors       = ["Bryan Helmkamp"]
  spec.email         = ["bryan@brynary.com"]
  spec.description   = %q{Collects test coverage data from your Ruby test suite and sends it to Code Climate's hosted, automated code review service. Based on SimpleCov.}
  spec.summary       = %q{Uploads Ruby test coverage data to Code Climate.}
  spec.homepage      = ""
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_dependency "simplecov", ">= 0.7.1", "< 1.0.0"
  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
codeclimate-test-reporter-0.0.11 codeclimate-test-reporter.gemspec
codeclimate-test-reporter-0.0.10 codeclimate-test-reporter.gemspec
codeclimate-test-reporter-0.0.9 codeclimate-test-reporter.gemspec