-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getch.gemspec
33 lines (27 loc) · 1.04 KB
/
getch.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
# frozen_string_literal: true
require_relative 'lib/getch/version'
Gem::Specification.new do |s|
s.name = 'getch'
s.version = Getch::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'A CLI tool to install Gentoo or VoidLinux.'
s.author = 'szorfein'
s.email = ['[email protected]']
s.homepage = 'https://github.com/szorfein/getch'
s.metadata = {
'source_code_uri' => 'https://github.com/szorfein/getch',
'changelog_uri' => 'https://github.com/szorfein/getch/blob/master/CHANGELOG.md',
'bug_tracker_uri' => 'https://github.com/szorfein/getch/issues',
'wiki_uri' => 'https://github.com/szorfein/getch'
}
s.license = 'MIT'
s.required_ruby_version = '>= 2.6'
s.files = Dir.glob('{assets,lib}/**/*', File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
s.files += %w[CHANGELOG.md LICENSE README.md]
s.files += %w[getch.gemspec]
s.bindir = 'bin'
s.executables << 'getch'
s.require_paths = ['lib']
#s.cert_chain = ['certs/szorfein.pem']
#s.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
end