-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteuton-get.gemspec
35 lines (28 loc) · 1.03 KB
/
teuton-get.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
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
name = "teuton-get"
require "#{name}/version"
Gem::Specification.new do |s|
s.name = name
s.version = TeutonGet::VERSION
s.summary = "TeutonGet (Teuton Software)"
s.description = <<-EOF
Find and download Teuton Test.
EOF
s.extra_rdoc_files = ["README.md", "LICENSE"] \
+ Dir.glob(File.join("docs", "**", "*.md"))
s.license = "GPL-3.0"
s.authors = ["David Vargas Ruiz"]
s.email = "teuton.software@protonmail.com"
s.homepage = TeutonGet::HOMEPAGE
s.executables << "teutonget"
s.executables << "teuton-get"
s.files = Dir.glob(File.join("lib", "**", "*.*"))
s.required_ruby_version = ">= 3.0.4"
s.add_runtime_dependency "inifile", "~> 3.0"
s.add_runtime_dependency "colorize", "~> 0.8"
s.add_runtime_dependency "json_pure", "~> 2.6"
s.add_runtime_dependency "tty-progressbar", "~> 0.18"
s.add_runtime_dependency "tty-prompt", "~> 0.23"
s.add_runtime_dependency "tty-table", "~> 0.12"
s.add_runtime_dependency "thor", "~> 1.2"
end