File: insist.gemspec

package info (click to toggle)
ruby-insist 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: ruby: 378; makefile: 40; sh: 10
file content (20 lines) | stat: -rw-r--r-- 581 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |spec|
  files = %x{git ls-files}.split("\n")

  spec.name = "insist"
  spec.version = "1.0.0"
  spec.summary = "A simple block-driven assertion library for both testing and for production code"
  spec.description = spec.summary
  spec.license = "Apache 2"

  # Note: You should set the version explicitly.
  #spec.add_dependency "cabin", ">0" # for logging. apache 2 license
  spec.files = files
  spec.require_paths << "lib"
  spec.bindir = "bin"

  spec.authors = ["Jordan Sissel"]
  spec.email = ["jls@semicomplete.com"]
  #spec.homepage = "..."
end