forked from TOMOSIA-VIETNAM/ssh_key_switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssh_key_switcher.gemspec
26 lines (23 loc) · 1004 Bytes
/
ssh_key_switcher.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
# frozen_string_literal: true
require_relative 'lib/ssh_key_switcher/version'
Gem::Specification.new do |spec|
spec.name = 'ssh_key_switcher'
spec.version = SshKeySwitcher::VERSION
spec.authors = ['Minh Tang Q.']
spec.email = ['[email protected]', '[email protected]']
spec.homepage = 'https://github.com/TOMOSIA-VIETNAM/ssh_key_switcher'
spec.summary = 'Simple and efficient for managing and switching between OpenSSH keys seamlessly'
spec.license = 'MIT'
spec.description = spec.summary
spec.files = Dir['lib/**/*', 'README.md']
spec.executables = %w[sks]
spec.required_ruby_version = '>= 2.6.0'
spec.metadata = {
'bug_tracker_uri' => "#{spec.homepage}/issues",
'documentation_uri' => spec.homepage,
'source_code_uri' => spec.homepage,
'rubygems_mfa_required' => 'true'
}
spec.add_dependency 'thor', '~> 1.3.0'
spec.add_dependency 'tty-prompt', '~> 0.23.1'
end