-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathoptimist.gemspec
More file actions
34 lines (29 loc) · 1.46 KB
/
Copy pathoptimist.gemspec
File metadata and controls
34 lines (29 loc) · 1.46 KB
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
29
30
31
32
33
34
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'optimist'
Gem::Specification.new do |spec|
spec.name = "optimist"
spec.version = Optimist::VERSION
spec.authors = ["William Morgan", "Keenan Brock", "Jason Frey"]
spec.email = "keenan@thebrocks.net"
spec.summary = "Optimist is a commandline option parser for Ruby that just gets out of your way."
spec.description = "Optimist is a commandline option parser for Ruby that just
gets out of your way. One line of code per option is all you need to write.
For that, you get a nice automatically-generated help page, robust option
parsing, command subcompletion, and sensible defaults for everything you don't
specify."
spec.homepage = "http://manageiq.github.io/optimist/"
spec.license = "MIT"
spec.files = `git ls-files lib`.split("\n") + ["CHANGELOG.md", "LICENSE.txt", "README.md"]
spec.metadata = {
"changelog_uri" => "https://github.com/ManageIQ/optimist/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/ManageIQ/optimist/",
"bug_tracker_uri" => "https://github.com/ManageIQ/optimist/issues",
}
spec.require_paths = ["lib"]
spec.add_development_dependency "chronic"
spec.add_development_dependency "manageiq-style"
spec.add_development_dependency "minitest", "~> 5.25"
spec.add_development_dependency "rake", ">= 10.0"
end