File: flores.gemspec

package info (click to toggle)
ruby-flores 0.0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 244 kB
  • sloc: ruby: 952; makefile: 36
file content (22 lines) | stat: -rw-r--r-- 594 bytes parent folder | download
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