-
Notifications
You must be signed in to change notification settings - Fork 102
/
gli.gemspec
39 lines (33 loc) · 1.62 KB
/
gli.gemspec
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
35
36
37
38
39
# Make sure we get the gli that's local
require File.join([File.dirname(__FILE__),"lib","gli","version.rb"])
spec = Gem::Specification.new do |s|
s.name = "gli"
s.version = GLI::VERSION
s.licenses = ["Apache-2.0"]
s.author = "David Copeland"
s.email = "[email protected]"
s.homepage = "http://davetron5000.github.io/gli"
s.platform = Gem::Platform::RUBY
s.summary = "Build command-suite CLI apps that are awesome."
s.description = "Build command-suite CLI apps that are awesome. Bootstrap your app, add commands, options and documentation while maintaining a well-tested idiomatic command-line app"
s.metadata = {
'bug_tracker_uri' => 'https://github.com/davetron5000/gli/issues',
'changelog_uri' => 'https://github.com/davetron5000/gli/releases',
'documentation_uri' => 'https://davetron5000.github.io/gli/rdoc/index.html',
'homepage_uri' => 'https://davetron5000.github.com/gli/',
'source_code_uri' => 'https://github.com/davetron5000/gli/',
'wiki_url' => 'https://github.com/davetron5000/gli/wiki',
}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.extra_rdoc_files = ["README.rdoc", "gli.rdoc"]
s.rdoc_options << "--title" << "Git Like Interface" << "--main" << "README.rdoc"
s.bindir = "exe"
s.executables = "gli"
s.add_development_dependency("rake")
s.add_development_dependency("rdoc")
s.add_development_dependency("rainbow", "~> 1.1", "~> 1.1.1")
s.add_development_dependency("sdoc")
s.add_development_dependency("minitest", "~> 5")
end