-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirect_ssh.gemspec
executable file
·29 lines (23 loc) · 1.26 KB
/
direct_ssh.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'direct_ssh/version'
Gem::Specification.new do |spec|
spec.name = "direct_ssh"
spec.version = DirectSsh::VERSION
spec.authors = ["Xia Xiongjun"]
spec.email = ["[email protected]"]
spec.description = %q{In order to use SSH or SCP without the need to enter password every time, this gem will create public/private ssh rsa keys if they do not exist and send public key to remote server automatically only if necessary.}
spec.summary = %q{Use SSH or SCP directly without the need to enter password every time}
spec.homepage = %q{https://github.com/xxjapp/direct_ssh}
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "net-ssh", "~> 5.2"
spec.add_runtime_dependency "net-scp", "~> 2.0"
spec.add_runtime_dependency "highline", "~> 2.0"
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 13.0"
end