1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Gem::Specification.new do |spec|
files = Dir.glob("**/*").select{|v| v !~ /^debian/}
spec.name = "flores"
spec.version = "0.0.8"
spec.summary = "Fuzz, randomize, and stress your tests"
spec.description = <<-DESCRIPTION
Add fuzzing, randomization, and stress to your tests.
This library is an exploration to build the tools to let you write tests
that find bugs.
In memory of Carlo Flores.
DESCRIPTION
spec.license = "Apache-2.0"
spec.files = files
spec.require_paths << "lib"
spec.authors = ["Jordan Sissel"]
spec.email = ["jls@semicomplete.com"]
end
|