File: clamp.gemspec

package info (click to toggle)
ruby-clamp 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 312 kB
  • sloc: ruby: 2,359; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 761 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
21
22
23
24
25
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "clamp/version"

Gem::Specification.new do |s|

  s.name          = "clamp"
  s.version       = Clamp::VERSION.dup
  s.platform      = Gem::Platform::RUBY
  s.authors       = ["Mike Williams"]
  s.email         = "mdub@dogbiscuit.org"
  s.homepage      = "http://github.com/mdub/clamp"

  s.license       = "MIT"

  s.summary       = "a minimal framework for command-line utilities"
  s.description   = <<EOF
Clamp provides an object-model for command-line utilities.
It handles parsing of command-line options, and generation of usage help.
EOF

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.require_paths = ["lib"]

end