forked from rails/thor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thor.gemspec
33 lines (28 loc) · 1.18 KB
/
thor.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
# coding: utf-8
lib = File.expand_path("../lib/", __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require "thor/version"
Gem::Specification.new do |spec|
spec.name = "thor"
spec.version = Thor::VERSION
spec.licenses = %w(MIT)
spec.authors = ["Yehuda Katz", "José Valim"]
spec.email = "ruby-thor@googlegroups.com"
spec.homepage = "http://whatisthor.com/"
spec.description = "Thor is a toolkit for building powerful command-line interfaces."
spec.summary = spec.description
spec.metadata = {
"bug_tracker_uri" => "https://github.com/rails/thor/issues",
"changelog_uri" => "https://github.com/rails/thor/releases/tag/v#{Thor::VERSION}",
"documentation_uri" => "http://whatisthor.com/",
"source_code_uri" => "https://github.com/rails/thor/tree/v#{Thor::VERSION}",
"wiki_uri" => "https://github.com/rails/thor/wiki",
"rubygems_mfa_required" => "true",
}
spec.required_ruby_version = ">= 2.6.0"
spec.required_rubygems_version = ">= 1.3.5"
spec.files = %w(.document thor.gemspec) + Dir["*.md", "bin/*", "lib/**/*.rb"]
spec.executables = %w(thor)
spec.require_paths = %w(lib)
spec.add_development_dependency "bundler", ">= 1.0", "< 3"
end