Sha256: 3ac295b125ba32f4211d23d32d746154a1e2a274312b57e02cc3fcd779765907

Contents?: true

Size: 884 Bytes

Versions: 3

Compression:

Stored size: 884 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "testr/version"

Gem::Specification.new do |s|
  s.name          = "testr"
  s.version       = TestR::VERSION
  s.authors,
  s.email         = File.read('LICENSE').scan(/Copyright \d+ (.+) <(.+?)>/).transpose
  s.homepage      = "http://github.com/sunaku/testr"
  s.summary       = "Continuous testing tool for Ruby"
  s.description   = nil

  s.files         = `git ls-files`.split("\n") + Dir["man/**/*"]
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_runtime_dependency 'binman', '~> 3'
  s.add_runtime_dependency 'json', '>= 1.6.1', '< 2'
  s.add_runtime_dependency 'guard', '>= 0.9.0', '< 1'
  s.add_runtime_dependency 'diff-lcs', '>= 1.1.2', '< 2'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
testr-14.3.0 testr.gemspec
testr-14.2.0 testr.gemspec
testr-14.1.3 testr.gemspec