Sha256: a5afdb57d92f7481a19915f8937feae02a01a9532c6928c61c3c2b4814f8183d

Contents?: true

Size: 761 Bytes

Versions: 6

Compression:

Stored size: 761 Bytes

Contents

$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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
clamp-1.2.1 clamp.gemspec
clamp-1.2.0 clamp.gemspec
clamp-1.2.0.beta1 clamp.gemspec
clamp-1.1.2 clamp.gemspec
clamp-1.1.1 clamp.gemspec
clamp-1.1.0 clamp.gemspec