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
|