net-ssh-gateway 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data.tar.gz.sig +0 -0
- data/{CHANGELOG.rdoc → CHANGES.txt} +5 -0
- data/LICENSE.txt +19 -0
- data/README.rdoc +27 -3
- data/Rakefile +48 -18
- data/gem-public_cert.pem +20 -0
- data/lib/net/ssh/gateway.rb +5 -5
- data/net-ssh-gateway.gemspec +43 -18
- data/test/gateway_test.rb +1 -0
- metadata +108 -54
- metadata.gz.sig +2 -0
data.tar.gz.sig
ADDED
Binary file
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright © 2008 Jamis Buck
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4
|
+
this software and associated documentation files (the ‘Software’), to deal in
|
5
|
+
the Software without restriction, including without limitation the rights to
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
8
|
+
so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
11
|
+
copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
19
|
+
SOFTWARE.
|
data/README.rdoc
CHANGED
@@ -1,10 +1,16 @@
|
|
1
1
|
= Net::SSH::Gateway
|
2
2
|
|
3
|
-
* http://net-ssh.
|
3
|
+
* Docs: http://net-ssh.github.com/net-ssh-gateway
|
4
|
+
* Issues: https://github.com/net-ssh/net-ssh-gateway/issues
|
5
|
+
* Codes: https://github.com/net-ssh/net-ssh-gateway
|
6
|
+
* Email: net-ssh@solutious.com
|
7
|
+
|
8
|
+
<em>As of v1.1.1, all gem releases are signed. See INSTALL.</em>
|
9
|
+
|
4
10
|
|
5
11
|
== DESCRIPTION:
|
6
12
|
|
7
|
-
Net::SSH::Gateway is a library for programmatically
|
13
|
+
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.
|
8
14
|
|
9
15
|
== FEATURES:
|
10
16
|
|
@@ -29,6 +35,10 @@ In a nutshell:
|
|
29
35
|
|
30
36
|
gateway.shutdown!
|
31
37
|
|
38
|
+
# As of 1.1.0, you can also specify the wait time for the
|
39
|
+
# gateway thread with the :loop_wait option.
|
40
|
+
gateway = Net::SSH::Gateway.new('host', 'user', :loop_wait => 0.001)
|
41
|
+
|
32
42
|
See Net::SSH::Gateway for more documentation.
|
33
43
|
|
34
44
|
== REQUIREMENTS:
|
@@ -42,7 +52,21 @@ If you want to run the tests or use any of the Rake tasks, you'll need:
|
|
42
52
|
|
43
53
|
== INSTALL:
|
44
54
|
|
45
|
-
* gem install net-ssh-gateway
|
55
|
+
* gem install net-ssh-gateway
|
56
|
+
|
57
|
+
However, in order to be sure the code you're installing hasn't been tampered with, it's recommended that you verify the signiture[http://docs.rubygems.org/read/chapter/21]. To do this, you need to add my public key as a trusted certificate (you only need to do this once):
|
58
|
+
|
59
|
+
# Add the public key as a trusted certificate
|
60
|
+
# (You only need to do this once)
|
61
|
+
$ curl -O https://raw.github.com/net-ssh/net-ssh/master/gem-public_cert.pem
|
62
|
+
$ gem cert --add gem-public_cert.pem
|
63
|
+
|
64
|
+
Then, when install the gem, do so with high security:
|
65
|
+
|
66
|
+
$ gem install net-ssh-gateway -P HighSecurity
|
67
|
+
|
68
|
+
If you don't add the public key, you'll see an error like "Couldn't verify data signature". If you're still having trouble let me know and I'll give you a hand.
|
69
|
+
|
46
70
|
|
47
71
|
== LICENSE:
|
48
72
|
|
data/Rakefile
CHANGED
@@ -1,28 +1,58 @@
|
|
1
|
+
require "rubygems"
|
2
|
+
require "rake"
|
3
|
+
require "rake/clean"
|
4
|
+
require "rdoc/task"
|
5
|
+
|
6
|
+
task :default => ["build"]
|
7
|
+
CLEAN.include [ 'pkg', 'rdoc' ]
|
8
|
+
name = "net-ssh-gateway"
|
9
|
+
|
10
|
+
$:.unshift File.join(File.dirname(__FILE__), 'lib')
|
1
11
|
require './lib/net/ssh/gateway'
|
12
|
+
version = Net::SSH::Gateway::Version::STRING.dup
|
2
13
|
|
3
14
|
begin
|
4
|
-
require
|
5
|
-
|
6
|
-
|
7
|
-
|
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"]
|
8
25
|
|
9
|
-
|
10
|
-
if ENV['SNAPSHOT'].to_i == 1
|
11
|
-
version << "." << Time.now.utc.strftime("%Y%m%d%H%M%S")
|
12
|
-
end
|
26
|
+
s.add_dependency 'net-ssh', ">=2.6.5"
|
13
27
|
|
14
|
-
|
15
|
-
|
28
|
+
s.add_development_dependency 'test-unit'
|
29
|
+
s.add_development_dependency 'mocha'
|
16
30
|
|
17
|
-
|
18
|
-
p.email = "net-ssh-gateway@solutious.com"
|
19
|
-
p.summary = "A simple library to assist in establishing tunneled Net::SSH connections"
|
20
|
-
p.url = "http://net-ssh.rubyforge.org/gateway"
|
31
|
+
s.license = "MIT"
|
21
32
|
|
22
|
-
|
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
|
23
40
|
|
24
|
-
|
25
|
-
|
41
|
+
require 'rake/testtask'
|
42
|
+
Rake::TestTask.new do |t|
|
43
|
+
t.libs = ["lib", "test"]
|
44
|
+
end
|
26
45
|
|
27
|
-
|
46
|
+
extra_files = %w[LICENSE.txt THANKS.txt CHANGES.txt ]
|
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
|
+
}
|
28
58
|
end
|
data/gem-public_cert.pem
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIIDNjCCAh6gAwIBAgIBADANBgkqhkiG9w0BAQUFADBBMQ8wDQYDVQQDDAZkZWxh
|
3
|
+
bm8xGTAXBgoJkiaJk/IsZAEZFglzb2x1dGlvdXMxEzARBgoJkiaJk/IsZAEZFgNj
|
4
|
+
b20wHhcNMTMwMjA2MTE1NzQ1WhcNMTQwMjA2MTE1NzQ1WjBBMQ8wDQYDVQQDDAZk
|
5
|
+
ZWxhbm8xGTAXBgoJkiaJk/IsZAEZFglzb2x1dGlvdXMxEzARBgoJkiaJk/IsZAEZ
|
6
|
+
FgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDg1hMtl0XsMuUK
|
7
|
+
AKTgYWv3gjj7vuEsE2EjT+vyBg8/LpqVVwZziiaebJT9IZiQ+sCFqbiakj0b53pI
|
8
|
+
hg1yOaBEmH6/W0L7rwzqaRV9sW1eJs9JxFYQCnd67zUnzj8nnRlOjG+hhIG+Vsij
|
9
|
+
npsGbt28pefuNZJjO5q2clAlfSniIIHfIsU7/StEYu6FUGOjnwryZ0r5yJlr9RrE
|
10
|
+
Gs+q0DW8QnZ9UpAfuDFQZuIqeKQFFLE7nMmCGaA+0BN1nLl3fVHNbLHq7Avk8+Z+
|
11
|
+
ZuuvkdscbHlO/l+3xCNQ5nUnHwq0ADAbMLOlmiYYzqXoWLjmeI6me/clktJCfN2R
|
12
|
+
oZG3UQvvAgMBAAGjOTA3MAkGA1UdEwQCMAAwHQYDVR0OBBYEFMSJOEtHzE4l0azv
|
13
|
+
M0JK0kKNToK1MAsGA1UdDwQEAwIEsDANBgkqhkiG9w0BAQUFAAOCAQEAtOdE73qx
|
14
|
+
OH2ydi9oT2hS5f9G0y1Z70Tlwh+VGExyfxzVE9XwC+iPpJxNraiHYgF/9/oky7ZZ
|
15
|
+
R9q0/tJneuhAenZdiQkX7oi4O3v9wRS6YHoWBxMPFKVRLNTzvVJsbmfpCAlp5/5g
|
16
|
+
ps4wQFy5mibElGVlOobf/ghqZ25HS9J6kd0/C/ry0AUtTogsL7TxGwT4kbCx63ub
|
17
|
+
3vywEEhsJUzfd97GCABmtQfRTldX/j7F1z/5wd8p+hfdox1iibds9ZtfaZA3KzKn
|
18
|
+
kchWN9B6zg9r1XMQ8BM2Jz0XoPanPe354+lWwjpkRKbFow/ZbQHcCLCq24+N6b6g
|
19
|
+
dgKfNDzwiDpqCA==
|
20
|
+
-----END CERTIFICATE-----
|
data/lib/net/ssh/gateway.rb
CHANGED
@@ -32,7 +32,7 @@ require 'net/ssh/version'
|
|
32
32
|
# Port numbers are allocated automatically, beginning at MAX_PORT and
|
33
33
|
# decrementing on each request for a new port until MIN_PORT is reached. If
|
34
34
|
# a port is already in use, this is detected and a different port will be
|
35
|
-
# assigned.
|
35
|
+
# assigned.
|
36
36
|
class Net::SSH::Gateway
|
37
37
|
# A trivial class for representing the version of this library.
|
38
38
|
class Version < Net::SSH::Version
|
@@ -40,7 +40,7 @@ class Net::SSH::Gateway
|
|
40
40
|
MAJOR = 1
|
41
41
|
|
42
42
|
# The minor component of the library's version
|
43
|
-
MINOR =
|
43
|
+
MINOR = 2
|
44
44
|
|
45
45
|
# The tiny component of the library's version
|
46
46
|
TINY = 0
|
@@ -65,8 +65,8 @@ class Net::SSH::Gateway
|
|
65
65
|
# are passed as given to that method to start up the gateway connection.
|
66
66
|
#
|
67
67
|
# gateway = Net::SSH::Gateway.new('host', 'user', :password => "password")
|
68
|
-
#
|
69
|
-
# As of 1.1 there is an additional option to specify the wait time for
|
68
|
+
#
|
69
|
+
# As of 1.1 there is an additional option to specify the wait time for
|
70
70
|
# the gateway thread. The default is 0.001 seconds and can be changed
|
71
71
|
# with the :loop_wait option.
|
72
72
|
#
|
@@ -98,7 +98,7 @@ class Net::SSH::Gateway
|
|
98
98
|
end
|
99
99
|
|
100
100
|
@active = false
|
101
|
-
|
101
|
+
|
102
102
|
@thread.join
|
103
103
|
@session.close
|
104
104
|
end
|
data/net-ssh-gateway.gemspec
CHANGED
@@ -1,33 +1,58 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
1
4
|
# -*- encoding: utf-8 -*-
|
2
5
|
|
3
6
|
Gem::Specification.new do |s|
|
4
|
-
s.name =
|
5
|
-
s.version = "1.
|
7
|
+
s.name = "net-ssh-gateway"
|
8
|
+
s.version = "1.2.0"
|
6
9
|
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">=
|
8
|
-
s.authors = ["Jamis Buck"]
|
9
|
-
s.
|
10
|
-
s.
|
11
|
-
s.
|
12
|
-
s.
|
13
|
-
s.
|
14
|
-
|
15
|
-
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
|
12
|
+
s.cert_chain = ["gem-public_cert.pem"]
|
13
|
+
s.date = "2013-02-06"
|
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"]
|
16
34
|
s.require_paths = ["lib"]
|
17
|
-
s.rubyforge_project =
|
18
|
-
s.rubygems_version =
|
19
|
-
s.
|
20
|
-
s.
|
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"
|
21
39
|
|
22
40
|
if s.respond_to? :specification_version then
|
23
41
|
s.specification_version = 3
|
24
42
|
|
25
43
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
26
|
-
s.add_runtime_dependency(%q<net-ssh>, [">=
|
44
|
+
s.add_runtime_dependency(%q<net-ssh>, [">= 2.6.5"])
|
45
|
+
s.add_development_dependency(%q<test-unit>, [">= 0"])
|
46
|
+
s.add_development_dependency(%q<mocha>, [">= 0"])
|
27
47
|
else
|
28
|
-
s.add_dependency(%q<net-ssh>, [">=
|
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"])
|
29
51
|
end
|
30
52
|
else
|
31
|
-
s.add_dependency(%q<net-ssh>, [">=
|
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"])
|
32
56
|
end
|
33
57
|
end
|
58
|
+
|
data/test/gateway_test.rb
CHANGED
metadata
CHANGED
@@ -1,80 +1,134 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: net-ssh-gateway
|
3
|
-
version: !ruby/object:Gem::Version
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.0
|
4
5
|
prerelease:
|
5
|
-
version: 1.1.0
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- Jamis Buck
|
9
|
+
- Delano Mandelbaum
|
9
10
|
autorequire:
|
10
11
|
bindir: bin
|
11
|
-
cert_chain:
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
12
|
+
cert_chain:
|
13
|
+
- !binary |-
|
14
|
+
LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUROakNDQWg2Z0F3SUJB
|
15
|
+
Z0lCQURBTkJna3Foa2lHOXcwQkFRVUZBREJCTVE4d0RRWURWUVFEREFaa1pX
|
16
|
+
eGgKYm04eEdUQVhCZ29Ka2lhSmsvSXNaQUVaRmdsemIyeDFkR2x2ZFhNeEV6
|
17
|
+
QVJCZ29Ka2lhSmsvSXNaQUVaRmdOagpiMjB3SGhjTk1UTXdNakEyTVRFMU56
|
18
|
+
UTFXaGNOTVRRd01qQTJNVEUxTnpRMVdqQkJNUTh3RFFZRFZRUUREQVprClpX
|
19
|
+
eGhibTh4R1RBWEJnb0praWFKay9Jc1pBRVpGZ2x6YjJ4MWRHbHZkWE14RXpB
|
20
|
+
UkJnb0praWFKay9Jc1pBRVoKRmdOamIyMHdnZ0VpTUEwR0NTcUdTSWIzRFFF
|
21
|
+
QkFRVUFBNElCRHdBd2dnRUtBb0lCQVFEZzFoTXRsMFhzTXVVSwpBS1RnWVd2
|
22
|
+
M2dqajd2dUVzRTJFalQrdnlCZzgvTHBxVlZ3WnppaWFlYkpUOUlaaVErc0NG
|
23
|
+
cWJpYWtqMGI1M3BJCmhnMXlPYUJFbUg2L1cwTDdyd3pxYVJWOXNXMWVKczlK
|
24
|
+
eEZZUUNuZDY3elVuemo4bm5SbE9qRytoaElHK1ZzaWoKbnBzR2J0MjhwZWZ1
|
25
|
+
TlpKak81cTJjbEFsZlNuaUlJSGZJc1U3L1N0RVl1NkZVR09qbndyeVowcjV5
|
26
|
+
SmxyOVJyRQpHcytxMERXOFFuWjlVcEFmdURGUVp1SXFlS1FGRkxFN25NbUNH
|
27
|
+
YUErMEJOMW5MbDNmVkhOYkxIcTdBdms4K1orClp1dXZrZHNjYkhsTy9sKzN4
|
28
|
+
Q05RNW5Vbkh3cTBBREFiTUxPbG1pWVl6cVhvV0xqbWVJNm1lL2Nsa3RKQ2ZO
|
29
|
+
MlIKb1pHM1VRdnZBZ01CQUFHak9UQTNNQWtHQTFVZEV3UUNNQUF3SFFZRFZS
|
30
|
+
ME9CQllFRk1TSk9FdEh6RTRsMGF6dgpNMEpLMGtLTlRvSzFNQXNHQTFVZER3
|
31
|
+
UUVBd0lFc0RBTkJna3Foa2lHOXcwQkFRVUZBQU9DQVFFQXRPZEU3M3F4Ck9I
|
32
|
+
MnlkaTlvVDJoUzVmOUcweTFaNzBUbHdoK1ZHRXh5Znh6VkU5WHdDK2lQcEp4
|
33
|
+
TnJhaUhZZ0YvOS9va3k3WloKUjlxMC90Sm5ldWhBZW5aZGlRa1g3b2k0TzN2
|
34
|
+
OXdSUzZZSG9XQnhNUEZLVlJMTlR6dlZKc2JtZnBDQWxwNS81ZwpwczR3UUZ5
|
35
|
+
NW1pYkVsR1ZsT29iZi9naHFaMjVIUzlKNmtkMC9DL3J5MEFVdFRvZ3NMN1R4
|
36
|
+
R3dUNGtiQ3g2M3ViCjN2eXdFRWhzSlV6ZmQ5N0dDQUJtdFFmUlRsZFgvajdG
|
37
|
+
MXovNXdkOHAraGZkb3gxaWliZHM5WnRmYVpBM0t6S24Ka2NoV045QjZ6Zzly
|
38
|
+
MVhNUThCTTJKejBYb1BhblBlMzU0K2xXd2pwa1JLYkZvdy9aYlFIY0NMQ3Ey
|
39
|
+
NCtONmI2ZwpkZ0tmTkR6d2lEcHFDQT09Ci0tLS0tRU5EIENFUlRJRklDQVRF
|
40
|
+
LS0tLS0K
|
41
|
+
date: 2013-02-06 00:00:00.000000000 Z
|
42
|
+
dependencies:
|
43
|
+
- !ruby/object:Gem::Dependency
|
17
44
|
name: net-ssh
|
18
|
-
|
19
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
20
46
|
none: false
|
21
|
-
requirements:
|
22
|
-
- -
|
23
|
-
- !ruby/object:Gem::Version
|
24
|
-
version:
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 2.6.5
|
25
51
|
type: :runtime
|
26
|
-
|
52
|
+
prerelease: false
|
53
|
+
version_requirements: !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ! '>='
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: 2.6.5
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: test-unit
|
61
|
+
requirement: !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
type: :development
|
68
|
+
prerelease: false
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ! '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: mocha
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
none: false
|
79
|
+
requirements:
|
80
|
+
- - ! '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
type: :development
|
84
|
+
prerelease: false
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
87
|
+
requirements:
|
88
|
+
- - ! '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
27
91
|
description: A simple library to assist in establishing tunneled Net::SSH connections
|
28
|
-
email: net-ssh
|
92
|
+
email: net-ssh@solutious.com
|
29
93
|
executables: []
|
30
|
-
|
31
94
|
extensions: []
|
32
|
-
|
33
|
-
|
34
|
-
- CHANGELOG.rdoc
|
35
|
-
- lib/net/ssh/gateway.rb
|
95
|
+
extra_rdoc_files:
|
96
|
+
- LICENSE.txt
|
36
97
|
- README.rdoc
|
37
|
-
files:
|
38
|
-
-
|
39
|
-
-
|
98
|
+
files:
|
99
|
+
- CHANGES.txt
|
100
|
+
- LICENSE.txt
|
40
101
|
- Manifest
|
41
|
-
- Rakefile
|
42
102
|
- README.rdoc
|
103
|
+
- Rakefile
|
104
|
+
- gem-public_cert.pem
|
105
|
+
- lib/net/ssh/gateway.rb
|
106
|
+
- net-ssh-gateway.gemspec
|
43
107
|
- setup.rb
|
44
108
|
- test/gateway_test.rb
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
licenses: []
|
49
|
-
|
109
|
+
homepage: https://github.com/net-ssh/net-scp
|
110
|
+
licenses:
|
111
|
+
- MIT
|
50
112
|
post_install_message:
|
51
|
-
rdoc_options:
|
52
|
-
|
53
|
-
- --inline-source
|
54
|
-
- --title
|
55
|
-
- Net-ssh-gateway
|
56
|
-
- --main
|
57
|
-
- README.rdoc
|
58
|
-
require_paths:
|
113
|
+
rdoc_options: []
|
114
|
+
require_paths:
|
59
115
|
- lib
|
60
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
116
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
61
117
|
none: false
|
62
|
-
requirements:
|
63
|
-
- -
|
64
|
-
- !ruby/object:Gem::Version
|
65
|
-
version:
|
66
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ! '>='
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
123
|
none: false
|
68
|
-
requirements:
|
69
|
-
- -
|
70
|
-
- !ruby/object:Gem::Version
|
71
|
-
version:
|
124
|
+
requirements:
|
125
|
+
- - ! '>='
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '0'
|
72
128
|
requirements: []
|
73
|
-
|
74
129
|
rubyforge_project: net-ssh-gateway
|
75
|
-
rubygems_version: 1.
|
130
|
+
rubygems_version: 1.8.25
|
76
131
|
signing_key:
|
77
132
|
specification_version: 3
|
78
133
|
summary: A simple library to assist in establishing tunneled Net::SSH connections
|
79
|
-
test_files:
|
80
|
-
- test/gateway_test.rb
|
134
|
+
test_files: []
|
metadata.gz.sig
ADDED