-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconsist.gemspec
32 lines (27 loc) · 1.15 KB
/
consist.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
require_relative "lib/consist/version"
Gem::Specification.new do |spec|
spec.name = "consist"
spec.version = Consist::VERSION
spec.authors = ["John McDowall"]
spec.email = ["john@kantan.io"]
spec.summary = "The one person framework server scaffolder"
spec.homepage = "https://github.com/consist-sh/consist"
spec.license = "LGPL-3.0"
spec.required_ruby_version = ">= 3.0"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/consist-sh/consist/issues",
"changelog_uri" => "https://github.com/consist-sh/consist/releases",
"source_code_uri" => "https://github.com/consist-sh/consist",
"homepage_uri" => spec.homepage,
"rubygems_mfa_required" => "true"
}
# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob(%w[LICENSE.txt README.md {exe,lib}/**/*], File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
# Runtime dependencies
spec.add_dependency "net-ssh", "~> 7.0"
spec.add_dependency "sshkit", "~> 1.21"
spec.add_dependency "thor", "~> 1.2"
end