blob: 9fcd4374ee8e5221fa4c327889d454cbd26890c3 (
plain)
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
36
37
38
39
40
41
42
43
44
|
require_relative 'lib/net/ssh/version'
Gem::Specification.new do |spec|
spec.name = "net-ssh"
spec.version = Net::SSH::Version::STRING
spec.authors = ["Jamis Buck", "Delano Mandelbaum", "Mikl\u{f3}s Fazekas"]
spec.email = ["net-ssh@solutious.com"]
if ENV['NET_SSH_BUILDGEM_SIGNED']
spec.cert_chain = ["net-ssh-public_cert.pem"]
spec.signing_key = "/mnt/gem/net-ssh-private_key.pem"
end
spec.summary = %q{Net::SSH: a pure-Ruby implementation of the SSH2 client protocol.}
spec.description = %q{Net::SSH: a pure-Ruby implementation of the SSH2 client protocol. It allows you to write programs that invoke and interact with processes on remote servers, via SSH2.}
spec.homepage = "https://github.com/net-ssh/net-ssh"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.5")
spec.metadata = {
"changelog_uri" => "https://github.com/net-ssh/net-ssh/blob/master/CHANGES.txt"
}
spec.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
unless ENV['NET_SSH_NO_ED25519']
spec.add_development_dependency("bcrypt_pbkdf", "~> 1.0") unless RUBY_PLATFORM == "java"
spec.add_development_dependency("ed25519", "~> 1.2")
spec.add_development_dependency('x25519') unless RUBY_PLATFORM == 'java'
end
spec.add_development_dependency "bundler", ">= 1.17"
spec.add_development_dependency "minitest", "~> 5.10"
spec.add_development_dependency "mocha", "~> 1.11.2"
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "rubocop", "~> 1.12.1"
end
|