net-ssh-gateway 1.2.0 → 1.3.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.
@@ -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
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.swp
11
+ .DS_Store
@@ -0,0 +1 @@
1
+ 2.2.0
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
4
+ before_install: gem install bundler -v 1.10.6
@@ -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
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in net-ssh-gateway.gemspec
4
+ gemspec
@@ -1,4 +1,6 @@
1
- = Net::SSH::Gateway
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
- == DESCRIPTION:
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
- == FEATURES:
17
+ ## FEATURES:
16
18
 
17
19
  * Easily manage forwarded ports
18
20
  * Establish Net::SSH connections through firewalls
19
21
 
20
- == SYNOPSIS:
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
- == REQUIREMENTS:
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
- == INSTALL:
55
+ ## INSTALL:
54
56
 
55
- * gem install net-ssh-gateway
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 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):
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.github.com/net-ssh/net-ssh/master/gem-public_cert.pem
62
- $ gem cert --add gem-public_cert.pem
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". If you're still having trouble let me know and I'll give you a hand.
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
- == LICENSE:
73
+ ## LICENSE:
72
74
 
73
75
  (The MIT License)
74
76
 
data/Rakefile CHANGED
@@ -1,58 +1,9 @@
1
- require "rubygems"
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
- 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
- }
58
- end
9
+ task :default => :test
@@ -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
 
@@ -0,0 +1,7 @@
1
+ module Net
2
+ module SSH
3
+ class Gateway
4
+ VERSION = "1.3.0"
5
+ end
6
+ end
7
+ end
@@ -1,58 +1,31 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
- # -*- encoding: utf-8 -*-
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 |s|
7
- s.name = "net-ssh-gateway"
8
- s.version = "1.2.0"
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
- 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"]
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
- if s.respond_to? :specification_version then
41
- s.specification_version = 3
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
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
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"])
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.2.0
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
- - !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
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: net-ssh
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: 2.6.5
51
- type: :runtime
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: 2.6.5
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: test-unit
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: '0'
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: '0'
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: '0'
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: '0'
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: net-ssh@solutious.com
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
- - Manifest
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
- - setup.rb
108
- - test/gateway_test.rb
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: net-ssh-gateway
130
- rubygems_version: 1.8.25
145
+ rubyforge_project:
146
+ rubygems_version: 2.4.5
131
147
  signing_key:
132
- specification_version: 3
148
+ specification_version: 4
133
149
  summary: A simple library to assist in establishing tunneled Net::SSH connections
134
150
  test_files: []