File: cutest.gemspec

package info (click to toggle)
ruby-cutest 1.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 176 kB
  • sloc: ruby: 376; makefile: 14
file content (19 lines) | stat: -rw-r--r-- 604 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require "./lib/cutest"

Gem::Specification.new do |s|
  s.name              = "cutest"
  s.version           = Cutest::VERSION
  s.summary           = "Forking tests."
  s.description       = "Run tests in separate processes to avoid shared state."
  s.authors           = ["Damian Janowski", "Michel Martens", "Cyril David"]
  s.email             = ["djanowski@dimaion.com", "michel@soveran.com", "me@cyrildavid.com"]
  s.homepage          = "https://github.com/djanowski/cutest"

  s.license = "MIT"

  s.files = `git ls-files`.split("\n")

  s.executables.push "cutest"

  s.add_dependency "clap"
end