Sha256: 34e52fcbfe1d45dd9dc1ef3faa782b3791333d0467acd299adef91842e96d57a

Contents?: true

Size: 964 Bytes

Versions: 1

Compression:

Stored size: 964 Bytes

Contents

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

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"]

  # specify any dependencies here; for example:
  # s.add_development_dependency "rspec"
  # s.add_runtime_dependency "rest-client"
  s.add_runtime_dependency "json", ">= 1.6.1"
  s.add_runtime_dependency "guard", ">= 0.8.4"
  s.add_runtime_dependency "diff-lcs", ">= 1.1.2"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
testr-14.1.1 testr.gemspec