-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathclamp.gemspec
More file actions
28 lines (21 loc) · 854 Bytes
/
Copy pathclamp.gemspec
File metadata and controls
28 lines (21 loc) · 854 Bytes
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
26
27
28
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
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 = "https://github.com/mdub/clamp"
s.license = "MIT"
s.summary = "a minimal framework for command-line utilities"
s.description = <<-TEXT.gsub(/^\s+/, "")
Clamp provides an object-model for command-line utilities.
It handles parsing of command-line options, and generation of usage help.
TEXT
s.files = Dir["lib/**/*", "examples/**/*", "*.md", "LICENSE"]
s.require_paths = ["lib"]
s.required_ruby_version = ">= 2.5", "< 5"
s.metadata["rubygems_mfa_required"] = "true"
end