net-ssh-gateway 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.gitignore +11 -0
- data/.ruby-version +1 -0
- data/.travis.yml +4 -0
- data/CHANGES.txt +8 -0
- data/Gemfile +4 -0
- data/{README.rdoc → README.md} +14 -12
- data/Rakefile +4 -53
- data/lib/net/ssh/gateway.rb +1 -19
- data/lib/net/ssh/gateway/version.rb +7 -0
- data/net-ssh-gateway.gemspec +26 -53
- data/net-ssh-public_cert.pem +21 -0
- metadata +85 -69
- metadata.gz.sig +1 -2
- data/Manifest +0 -7
- data/gem-public_cert.pem +0 -20
- data/setup.rb +0 -1585
- data/test/gateway_test.rb +0 -123
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: db7ab4dad7ebd7d09fec9742a6dde8ade0d30b15
|
4
|
+
data.tar.gz: 43c6707424a9804f46d88c1df2dfbf5e0db8a192
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c0f93392d1e0b308162a7965e0a0f815fd7ff21d9d79f7b184f9c91718f556d0a72bfa7f63af91cd344b0cb163f7a35f8a75b42107bce9f22353359af6ab9fa3
|
7
|
+
data.tar.gz: 1258069f4ee24b6ec53ad79a3b8f5e9bd3e378063bd0b3f05ee9e8ce39c4ee2610b436cf15438c68534828bdfa5d6c1ca785bb6359c456397de8a1d9b851f1ab
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/.gitignore
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.2.0
|
data/.travis.yml
ADDED
data/CHANGES.txt
CHANGED
@@ -1,4 +1,12 @@
|
|
1
1
|
|
2
|
+
=== 1.3.0 / 26 Jan 2017
|
3
|
+
|
4
|
+
* Fix for loop_wait option on initialization [mfazekas, tpitale]
|
5
|
+
* Use bundler and remove remove jeweler [tpitale]
|
6
|
+
* Use minitest instead of test/unit [tpitale]
|
7
|
+
* Added Travis CI config [tpitale]
|
8
|
+
|
9
|
+
|
2
10
|
=== 1.2.0 / 06 Feb 2013
|
3
11
|
|
4
12
|
* Added public cert. All gem releases are now signed. See INSTALL in readme.
|
data/Gemfile
ADDED
data/{README.rdoc → README.md}
RENAMED
@@ -1,4 +1,6 @@
|
|
1
|
-
|
1
|
+
# Net::SSH::Gateway
|
2
|
+
|
3
|
+
<em><b>Please note: this project is in maintenance mode. It is not under active development but pull requests are very much welcome. Just be sure to include tests!</b></em>
|
2
4
|
|
3
5
|
* Docs: http://net-ssh.github.com/net-ssh-gateway
|
4
6
|
* Issues: https://github.com/net-ssh/net-ssh-gateway/issues
|
@@ -8,16 +10,16 @@
|
|
8
10
|
<em>As of v1.1.1, all gem releases are signed. See INSTALL.</em>
|
9
11
|
|
10
12
|
|
11
|
-
|
13
|
+
## DESCRIPTION:
|
12
14
|
|
13
15
|
Net::SSH::Gateway is a library for programmatically tunnelling connections to servers via a single "gateway" host. It is useful for establishing Net::SSH connections to servers behind firewalls, but can also be used to forward ports and establish connections of other types, like HTTP, to servers with restricted access.
|
14
16
|
|
15
|
-
|
17
|
+
## FEATURES:
|
16
18
|
|
17
19
|
* Easily manage forwarded ports
|
18
20
|
* Establish Net::SSH connections through firewalls
|
19
21
|
|
20
|
-
|
22
|
+
## SYNOPSIS:
|
21
23
|
|
22
24
|
In a nutshell:
|
23
25
|
|
@@ -41,7 +43,7 @@ In a nutshell:
|
|
41
43
|
|
42
44
|
See Net::SSH::Gateway for more documentation.
|
43
45
|
|
44
|
-
|
46
|
+
## REQUIREMENTS:
|
45
47
|
|
46
48
|
* net-ssh (version 2)
|
47
49
|
|
@@ -50,25 +52,25 @@ If you want to run the tests or use any of the Rake tasks, you'll need:
|
|
50
52
|
* Echoe (for the Rakefile)
|
51
53
|
* Mocha (for the tests)
|
52
54
|
|
53
|
-
|
55
|
+
## INSTALL:
|
54
56
|
|
55
|
-
|
57
|
+
$ gem install net-ssh-gateway
|
56
58
|
|
57
|
-
However, in order to be sure the code you're installing hasn't been tampered with, it's recommended that you verify the
|
59
|
+
However, in order to be sure the code you're installing hasn't been tampered with, it's recommended that you verify the [signature](http://guides.rubygems.org/security/). To do this, you need to add the project's public key as a trusted certificate (you only need to do this once):
|
58
60
|
|
59
61
|
# Add the public key as a trusted certificate
|
60
62
|
# (You only need to do this once)
|
61
|
-
$ curl -O https://raw.
|
62
|
-
$ gem cert --add
|
63
|
+
$ curl -O https://raw.githubusercontent.com/net-ssh/net-ssh-gateway/master/net-ssh-public_cert.pem
|
64
|
+
$ gem cert --add net-ssh-public_cert.pem
|
63
65
|
|
64
66
|
Then, when install the gem, do so with high security:
|
65
67
|
|
66
68
|
$ gem install net-ssh-gateway -P HighSecurity
|
67
69
|
|
68
|
-
If you don't add the public key, you'll see an error like "Couldn't verify data signature".
|
70
|
+
If you don't add the public key, you'll see an error like "Couldn't verify data signature".
|
69
71
|
|
70
72
|
|
71
|
-
|
73
|
+
## LICENSE:
|
72
74
|
|
73
75
|
(The MIT License)
|
74
76
|
|
data/Rakefile
CHANGED
@@ -1,58 +1,9 @@
|
|
1
|
-
require "
|
2
|
-
require "rake"
|
3
|
-
require "rake/clean"
|
4
|
-
require "rdoc/task"
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "rake/testtask"
|
5
3
|
|
6
|
-
task :default => ["build"]
|
7
|
-
CLEAN.include [ 'pkg', 'rdoc' ]
|
8
|
-
name = "net-ssh-gateway"
|
9
|
-
|
10
|
-
$:.unshift File.join(File.dirname(__FILE__), 'lib')
|
11
|
-
require './lib/net/ssh/gateway'
|
12
|
-
version = Net::SSH::Gateway::Version::STRING.dup
|
13
|
-
|
14
|
-
begin
|
15
|
-
require "jeweler"
|
16
|
-
Jeweler::Tasks.new do |s|
|
17
|
-
s.version = version
|
18
|
-
s.name = name
|
19
|
-
s.rubyforge_project = s.name
|
20
|
-
s.summary = "A simple library to assist in establishing tunneled Net::SSH connections"
|
21
|
-
s.description = s.summary
|
22
|
-
s.email = "net-ssh@solutious.com"
|
23
|
-
s.homepage = "https://github.com/net-ssh/net-scp"
|
24
|
-
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
|
25
|
-
|
26
|
-
s.add_dependency 'net-ssh', ">=2.6.5"
|
27
|
-
|
28
|
-
s.add_development_dependency 'test-unit'
|
29
|
-
s.add_development_dependency 'mocha'
|
30
|
-
|
31
|
-
s.license = "MIT"
|
32
|
-
|
33
|
-
s.signing_key = File.join('/mnt/gem/', 'gem-private_key.pem')
|
34
|
-
s.cert_chain = ['gem-public_cert.pem']
|
35
|
-
end
|
36
|
-
Jeweler::GemcutterTasks.new
|
37
|
-
rescue LoadError
|
38
|
-
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
39
|
-
end
|
40
|
-
|
41
|
-
require 'rake/testtask'
|
42
4
|
Rake::TestTask.new do |t|
|
43
5
|
t.libs = ["lib", "test"]
|
6
|
+
t.pattern = "test/**/*_test.rb"
|
44
7
|
end
|
45
8
|
|
46
|
-
|
47
|
-
RDoc::Task.new do |rdoc|
|
48
|
-
rdoc.rdoc_dir = "rdoc"
|
49
|
-
rdoc.title = "#{name} #{version}"
|
50
|
-
rdoc.generator = 'hanna' # gem install hanna-nouveau
|
51
|
-
rdoc.main = 'README.rdoc'
|
52
|
-
rdoc.rdoc_files.include("README*")
|
53
|
-
rdoc.rdoc_files.include("bin/*.rb")
|
54
|
-
rdoc.rdoc_files.include("lib/**/*.rb")
|
55
|
-
extra_files.each { |file|
|
56
|
-
rdoc.rdoc_files.include(file) if File.exists?(file)
|
57
|
-
}
|
58
|
-
end
|
9
|
+
task :default => :test
|
data/lib/net/ssh/gateway.rb
CHANGED
@@ -34,24 +34,6 @@ require 'net/ssh/version'
|
|
34
34
|
# a port is already in use, this is detected and a different port will be
|
35
35
|
# assigned.
|
36
36
|
class Net::SSH::Gateway
|
37
|
-
# A trivial class for representing the version of this library.
|
38
|
-
class Version < Net::SSH::Version
|
39
|
-
# The major component of the library's version
|
40
|
-
MAJOR = 1
|
41
|
-
|
42
|
-
# The minor component of the library's version
|
43
|
-
MINOR = 2
|
44
|
-
|
45
|
-
# The tiny component of the library's version
|
46
|
-
TINY = 0
|
47
|
-
|
48
|
-
# The library's version as a Version instance
|
49
|
-
CURRENT = new(MAJOR, MINOR, TINY)
|
50
|
-
|
51
|
-
# The library's version as a String instance
|
52
|
-
STRING = CURRENT.to_s
|
53
|
-
end
|
54
|
-
|
55
37
|
# The maximum port number that the gateway will attempt to use to forward
|
56
38
|
# connections from.
|
57
39
|
MAX_PORT = 65535
|
@@ -71,11 +53,11 @@ class Net::SSH::Gateway
|
|
71
53
|
# with the :loop_wait option.
|
72
54
|
#
|
73
55
|
def initialize(host, user, options={})
|
56
|
+
@loop_wait = options.delete(:loop_wait) || 0.001
|
74
57
|
@session = Net::SSH.start(host, user, options)
|
75
58
|
@session_mutex = Mutex.new
|
76
59
|
@port_mutex = Mutex.new
|
77
60
|
@next_port = MAX_PORT
|
78
|
-
@loop_wait = options.delete(:loop_wait) || 0.001
|
79
61
|
initiate_event_loop!
|
80
62
|
end
|
81
63
|
|
data/net-ssh-gateway.gemspec
CHANGED
@@ -1,58 +1,31 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'net/ssh/gateway/version'
|
5
5
|
|
6
|
-
Gem::Specification.new do |
|
7
|
-
|
8
|
-
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "net-ssh-gateway"
|
8
|
+
spec.version = Net::SSH::Gateway::VERSION
|
9
|
+
spec.authors = ["Jamis Buck", "Delano Mandelbaum", "Mikl\u{f3}s Fazekas"]
|
10
|
+
spec.email = ["net-ssh@solutious.com"]
|
9
11
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
s.description = "A simple library to assist in establishing tunneled Net::SSH connections"
|
15
|
-
s.email = "net-ssh@solutious.com"
|
16
|
-
s.extra_rdoc_files = [
|
17
|
-
"LICENSE.txt",
|
18
|
-
"README.rdoc"
|
19
|
-
]
|
20
|
-
s.files = [
|
21
|
-
"CHANGES.txt",
|
22
|
-
"LICENSE.txt",
|
23
|
-
"Manifest",
|
24
|
-
"README.rdoc",
|
25
|
-
"Rakefile",
|
26
|
-
"gem-public_cert.pem",
|
27
|
-
"lib/net/ssh/gateway.rb",
|
28
|
-
"net-ssh-gateway.gemspec",
|
29
|
-
"setup.rb",
|
30
|
-
"test/gateway_test.rb"
|
31
|
-
]
|
32
|
-
s.homepage = "https://github.com/net-ssh/net-scp"
|
33
|
-
s.licenses = ["MIT"]
|
34
|
-
s.require_paths = ["lib"]
|
35
|
-
s.rubyforge_project = "net-ssh-gateway"
|
36
|
-
s.rubygems_version = "1.8.25"
|
37
|
-
s.signing_key = "/mnt/gem/gem-private_key.pem"
|
38
|
-
s.summary = "A simple library to assist in establishing tunneled Net::SSH connections"
|
12
|
+
if ENV['NET_SSH_BUILDGEM_SIGNED']
|
13
|
+
spec.cert_chain = ["net-ssh-public_cert.pem"]
|
14
|
+
spec.signing_key = "/mnt/gem/net-ssh-private_key.pem"
|
15
|
+
end
|
39
16
|
|
40
|
-
|
41
|
-
|
17
|
+
spec.summary = %q{A simple library to assist in establishing tunneled Net::SSH connections}
|
18
|
+
spec.description = %q{A simple library to assist in establishing tunneled Net::SSH connections}
|
19
|
+
spec.homepage = "https://github.com/net-ssh/net-ssh-gateway"
|
20
|
+
spec.license = "MIT"
|
42
21
|
|
43
|
-
|
44
|
-
|
45
|
-
s.add_development_dependency(%q<test-unit>, [">= 0"])
|
46
|
-
s.add_development_dependency(%q<mocha>, [">= 0"])
|
47
|
-
else
|
48
|
-
s.add_dependency(%q<net-ssh>, [">= 2.6.5"])
|
49
|
-
s.add_dependency(%q<test-unit>, [">= 0"])
|
50
|
-
s.add_dependency(%q<mocha>, [">= 0"])
|
51
|
-
end
|
52
|
-
else
|
53
|
-
s.add_dependency(%q<net-ssh>, [">= 2.6.5"])
|
54
|
-
s.add_dependency(%q<test-unit>, [">= 0"])
|
55
|
-
s.add_dependency(%q<mocha>, [">= 0"])
|
56
|
-
end
|
57
|
-
end
|
22
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
spec.require_paths = ["lib"]
|
58
24
|
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
26
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
27
|
+
spec.add_development_dependency "minitest", "~> 5.8.4"
|
28
|
+
spec.add_development_dependency "mocha", ">= 1.2.1"
|
29
|
+
|
30
|
+
spec.add_runtime_dependency "net-ssh", ">= 2.6.5"
|
31
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIIDeDCCAmCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBBMQ8wDQYDVQQDDAZuZXRz
|
3
|
+
c2gxGTAXBgoJkiaJk/IsZAEZFglzb2x1dGlvdXMxEzARBgoJkiaJk/IsZAEZFgNj
|
4
|
+
b20wHhcNMTYxMjE1MTgwNTIyWhcNMTcxMjE1MTgwNTIyWjBBMQ8wDQYDVQQDDAZu
|
5
|
+
ZXRzc2gxGTAXBgoJkiaJk/IsZAEZFglzb2x1dGlvdXMxEzARBgoJkiaJk/IsZAEZ
|
6
|
+
FgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGJ4TbZ9H+qZ08
|
7
|
+
pQfJhPJTHaDCyQvCsKTFrL5O9z3tllQ7B/zksMMM+qFBpNYu9HCcg4yBATacE/PB
|
8
|
+
qVVyUrpr6lbH/XwoN5ljXm+bdCfmnjZvTCL2FTE6o+bcnaF0IsJyC0Q2B1fbWdXN
|
9
|
+
6Off1ZWoUk6We2BIM1bn6QJLxBpGyYhvOPXsYoqSuzDf2SJDDsWFZ8kV5ON13Ohm
|
10
|
+
JbBzn0oD8HF8FuYOewwsC0C1q4w7E5GtvHcQ5juweS7+RKsyDcVcVrLuNzoGRttS
|
11
|
+
KP4yMn+TzaXijyjRg7gECfJr3TGASaA4bQsILFGG5dAWcwO4OMrZedR7SHj/o0Kf
|
12
|
+
3gL7P0axAgMBAAGjezB5MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
|
13
|
+
BBQF8qLA7Z4zg0SJGtUbv3eoQ8tjIzAfBgNVHREEGDAWgRRuZXRzc2hAc29sdXRp
|
14
|
+
b3VzLmNvbTAfBgNVHRIEGDAWgRRuZXRzc2hAc29sdXRpb3VzLmNvbTANBgkqhkiG
|
15
|
+
9w0BAQUFAAOCAQEATd8If+Ytmhf5lELy24j76ahGv64m518WTCdV2nIViGXB2BnV
|
16
|
+
uLQylGRb1rcgUS3Eh9TE28hqrfhotKS6a96qF9kN0mY2H6UwPWswJ+tj3gA1vLW8
|
17
|
+
wlZNlYGJ91Ig9zULPSbATyOOprUZyggy5p1260BaaI3LQYDeGJOSqpHCVu+TuMcy
|
18
|
+
k00ofiLT1crDSUl2WE/OIFK8AXpmd798AMsef8okHeoo+Dj7zCXn0VSimN+MO1mE
|
19
|
+
L4d54WIy4HkZCqQXoTSiK5HZMIdXkPk3F1bZdJ8Dy1sMRru0rUkkM5mW7TQ75mfW
|
20
|
+
Zp0QrZyNZhtitrXFbZneGRrIA/8G2Krft5Ly/A==
|
21
|
+
-----END CERTIFICATE-----
|
metadata
CHANGED
@@ -1,134 +1,150 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: net-ssh-gateway
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
5
|
-
prerelease:
|
4
|
+
version: 1.3.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Jamis Buck
|
9
8
|
- Delano Mandelbaum
|
9
|
+
- Miklós Fazekas
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain:
|
13
|
-
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
R3dUNGtiQ3g2M3ViCjN2eXdFRWhzSlV6ZmQ5N0dDQUJtdFFmUlRsZFgvajdG
|
37
|
-
MXovNXdkOHAraGZkb3gxaWliZHM5WnRmYVpBM0t6S24Ka2NoV045QjZ6Zzly
|
38
|
-
MVhNUThCTTJKejBYb1BhblBlMzU0K2xXd2pwa1JLYkZvdy9aYlFIY0NMQ3Ey
|
39
|
-
NCtONmI2ZwpkZ0tmTkR6d2lEcHFDQT09Ci0tLS0tRU5EIENFUlRJRklDQVRF
|
40
|
-
LS0tLS0K
|
41
|
-
date: 2013-02-06 00:00:00.000000000 Z
|
13
|
+
- |
|
14
|
+
-----BEGIN CERTIFICATE-----
|
15
|
+
MIIDeDCCAmCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBBMQ8wDQYDVQQDDAZuZXRz
|
16
|
+
c2gxGTAXBgoJkiaJk/IsZAEZFglzb2x1dGlvdXMxEzARBgoJkiaJk/IsZAEZFgNj
|
17
|
+
b20wHhcNMTYxMjE1MTgwNTIyWhcNMTcxMjE1MTgwNTIyWjBBMQ8wDQYDVQQDDAZu
|
18
|
+
ZXRzc2gxGTAXBgoJkiaJk/IsZAEZFglzb2x1dGlvdXMxEzARBgoJkiaJk/IsZAEZ
|
19
|
+
FgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGJ4TbZ9H+qZ08
|
20
|
+
pQfJhPJTHaDCyQvCsKTFrL5O9z3tllQ7B/zksMMM+qFBpNYu9HCcg4yBATacE/PB
|
21
|
+
qVVyUrpr6lbH/XwoN5ljXm+bdCfmnjZvTCL2FTE6o+bcnaF0IsJyC0Q2B1fbWdXN
|
22
|
+
6Off1ZWoUk6We2BIM1bn6QJLxBpGyYhvOPXsYoqSuzDf2SJDDsWFZ8kV5ON13Ohm
|
23
|
+
JbBzn0oD8HF8FuYOewwsC0C1q4w7E5GtvHcQ5juweS7+RKsyDcVcVrLuNzoGRttS
|
24
|
+
KP4yMn+TzaXijyjRg7gECfJr3TGASaA4bQsILFGG5dAWcwO4OMrZedR7SHj/o0Kf
|
25
|
+
3gL7P0axAgMBAAGjezB5MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
|
26
|
+
BBQF8qLA7Z4zg0SJGtUbv3eoQ8tjIzAfBgNVHREEGDAWgRRuZXRzc2hAc29sdXRp
|
27
|
+
b3VzLmNvbTAfBgNVHRIEGDAWgRRuZXRzc2hAc29sdXRpb3VzLmNvbTANBgkqhkiG
|
28
|
+
9w0BAQUFAAOCAQEATd8If+Ytmhf5lELy24j76ahGv64m518WTCdV2nIViGXB2BnV
|
29
|
+
uLQylGRb1rcgUS3Eh9TE28hqrfhotKS6a96qF9kN0mY2H6UwPWswJ+tj3gA1vLW8
|
30
|
+
wlZNlYGJ91Ig9zULPSbATyOOprUZyggy5p1260BaaI3LQYDeGJOSqpHCVu+TuMcy
|
31
|
+
k00ofiLT1crDSUl2WE/OIFK8AXpmd798AMsef8okHeoo+Dj7zCXn0VSimN+MO1mE
|
32
|
+
L4d54WIy4HkZCqQXoTSiK5HZMIdXkPk3F1bZdJ8Dy1sMRru0rUkkM5mW7TQ75mfW
|
33
|
+
Zp0QrZyNZhtitrXFbZneGRrIA/8G2Krft5Ly/A==
|
34
|
+
-----END CERTIFICATE-----
|
35
|
+
date: 2017-01-26 00:00:00.000000000 Z
|
42
36
|
dependencies:
|
43
37
|
- !ruby/object:Gem::Dependency
|
44
|
-
name:
|
38
|
+
name: bundler
|
45
39
|
requirement: !ruby/object:Gem::Requirement
|
46
|
-
none: false
|
47
40
|
requirements:
|
48
|
-
- -
|
41
|
+
- - "~>"
|
49
42
|
- !ruby/object:Gem::Version
|
50
|
-
version:
|
51
|
-
type: :
|
43
|
+
version: '1.10'
|
44
|
+
type: :development
|
52
45
|
prerelease: false
|
53
46
|
version_requirements: !ruby/object:Gem::Requirement
|
54
|
-
none: false
|
55
47
|
requirements:
|
56
|
-
- -
|
48
|
+
- - "~>"
|
57
49
|
- !ruby/object:Gem::Version
|
58
|
-
version:
|
50
|
+
version: '1.10'
|
51
|
+
- !ruby/object:Gem::Dependency
|
52
|
+
name: rake
|
53
|
+
requirement: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - "~>"
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '10.0'
|
58
|
+
type: :development
|
59
|
+
prerelease: false
|
60
|
+
version_requirements: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - "~>"
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '10.0'
|
59
65
|
- !ruby/object:Gem::Dependency
|
60
|
-
name:
|
66
|
+
name: minitest
|
61
67
|
requirement: !ruby/object:Gem::Requirement
|
62
|
-
none: false
|
63
68
|
requirements:
|
64
|
-
- -
|
69
|
+
- - "~>"
|
65
70
|
- !ruby/object:Gem::Version
|
66
|
-
version:
|
71
|
+
version: 5.8.4
|
67
72
|
type: :development
|
68
73
|
prerelease: false
|
69
74
|
version_requirements: !ruby/object:Gem::Requirement
|
70
|
-
none: false
|
71
75
|
requirements:
|
72
|
-
- -
|
76
|
+
- - "~>"
|
73
77
|
- !ruby/object:Gem::Version
|
74
|
-
version:
|
78
|
+
version: 5.8.4
|
75
79
|
- !ruby/object:Gem::Dependency
|
76
80
|
name: mocha
|
77
81
|
requirement: !ruby/object:Gem::Requirement
|
78
|
-
none: false
|
79
82
|
requirements:
|
80
|
-
- -
|
83
|
+
- - ">="
|
81
84
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
85
|
+
version: 1.2.1
|
83
86
|
type: :development
|
84
87
|
prerelease: false
|
85
88
|
version_requirements: !ruby/object:Gem::Requirement
|
86
|
-
none: false
|
87
89
|
requirements:
|
88
|
-
- -
|
90
|
+
- - ">="
|
89
91
|
- !ruby/object:Gem::Version
|
90
|
-
version:
|
92
|
+
version: 1.2.1
|
93
|
+
- !ruby/object:Gem::Dependency
|
94
|
+
name: net-ssh
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: 2.6.5
|
100
|
+
type: :runtime
|
101
|
+
prerelease: false
|
102
|
+
version_requirements: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: 2.6.5
|
91
107
|
description: A simple library to assist in establishing tunneled Net::SSH connections
|
92
|
-
email:
|
108
|
+
email:
|
109
|
+
- net-ssh@solutious.com
|
93
110
|
executables: []
|
94
111
|
extensions: []
|
95
|
-
extra_rdoc_files:
|
96
|
-
- LICENSE.txt
|
97
|
-
- README.rdoc
|
112
|
+
extra_rdoc_files: []
|
98
113
|
files:
|
114
|
+
- ".gitignore"
|
115
|
+
- ".ruby-version"
|
116
|
+
- ".travis.yml"
|
99
117
|
- CHANGES.txt
|
118
|
+
- Gemfile
|
100
119
|
- LICENSE.txt
|
101
|
-
-
|
102
|
-
- README.rdoc
|
120
|
+
- README.md
|
103
121
|
- Rakefile
|
104
|
-
- gem-public_cert.pem
|
105
122
|
- lib/net/ssh/gateway.rb
|
123
|
+
- lib/net/ssh/gateway/version.rb
|
106
124
|
- net-ssh-gateway.gemspec
|
107
|
-
-
|
108
|
-
|
109
|
-
homepage: https://github.com/net-ssh/net-scp
|
125
|
+
- net-ssh-public_cert.pem
|
126
|
+
homepage: https://github.com/net-ssh/net-ssh-gateway
|
110
127
|
licenses:
|
111
128
|
- MIT
|
129
|
+
metadata: {}
|
112
130
|
post_install_message:
|
113
131
|
rdoc_options: []
|
114
132
|
require_paths:
|
115
133
|
- lib
|
116
134
|
required_ruby_version: !ruby/object:Gem::Requirement
|
117
|
-
none: false
|
118
135
|
requirements:
|
119
|
-
- -
|
136
|
+
- - ">="
|
120
137
|
- !ruby/object:Gem::Version
|
121
138
|
version: '0'
|
122
139
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
123
|
-
none: false
|
124
140
|
requirements:
|
125
|
-
- -
|
141
|
+
- - ">="
|
126
142
|
- !ruby/object:Gem::Version
|
127
143
|
version: '0'
|
128
144
|
requirements: []
|
129
|
-
rubyforge_project:
|
130
|
-
rubygems_version:
|
145
|
+
rubyforge_project:
|
146
|
+
rubygems_version: 2.4.5
|
131
147
|
signing_key:
|
132
|
-
specification_version:
|
148
|
+
specification_version: 4
|
133
149
|
summary: A simple library to assist in establishing tunneled Net::SSH connections
|
134
150
|
test_files: []
|