net-ssh-multi 1.1 → 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 -4
- data/LICENSE.txt +19 -0
- data/README.rdoc +21 -2
- data/Rakefile +50 -76
- data/gem-public_cert.pem +20 -0
- data/lib/net/ssh/multi/version.rb +1 -1
- data/net-ssh-multi.gemspec +75 -0
- metadata +117 -57
- metadata.gz.sig +0 -0
data.tar.gz.sig
ADDED
Binary file
|
@@ -1,12 +1,15 @@
|
|
1
|
+
|
2
|
+
=== 1.2.0 / 06 Feb 2013
|
3
|
+
|
4
|
+
* Added public cert. All gem releases are now signed. See INSTALL in readme.
|
5
|
+
|
1
6
|
=== 1.1 / 3 Apr 2011
|
2
7
|
|
3
8
|
* Rescue Timeout::Error so :on_error works as expected when server is unavailable. [Joel Watson]
|
4
9
|
|
5
|
-
|
6
10
|
=== 1.0.1 / 1 Feb 2009
|
7
11
|
|
8
12
|
* Remove redundant call to block_given? in Session#group [paddor]
|
9
|
-
|
10
13
|
* Add Channel#on_open_failed callback hook [Jamis Buck]
|
11
14
|
|
12
15
|
|
@@ -14,12 +17,10 @@
|
|
14
17
|
|
15
18
|
* (no changes since the last preview release)
|
16
19
|
|
17
|
-
|
18
20
|
=== 1.0 Preview Release 2 (0.99.1) / 19 Apr 2008
|
19
21
|
|
20
22
|
* Don't try to select on closed IO streams [Jamis Buck]
|
21
23
|
|
22
|
-
|
23
24
|
=== 1.0 Preview Release 1 (0.99.0) / 10 Apr 2008
|
24
25
|
|
25
26
|
* First release of Net::SSH::Multi
|
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,6 +1,11 @@
|
|
1
1
|
= Net::SSH::Multi
|
2
2
|
|
3
|
-
* http://net-ssh.
|
3
|
+
* Docs: http://net-ssh.github.com/net-ssh-multi
|
4
|
+
* Issues: https://github.com/net-ssh/net-ssh-multi/issues
|
5
|
+
* Codes: https://github.com/net-ssh/net-ssh-multi
|
6
|
+
* Email: net-ssh@solutious.com
|
7
|
+
|
8
|
+
<em>As of v1.1.1, all gem releases are signed. See INSTALL.</em>
|
4
9
|
|
5
10
|
== DESCRIPTION:
|
6
11
|
|
@@ -59,7 +64,21 @@ If you want to run the tests or use any of the Rake tasks, you'll need:
|
|
59
64
|
|
60
65
|
== INSTALL:
|
61
66
|
|
62
|
-
* gem install net-ssh-multi
|
67
|
+
* gem install net-ssh-multi
|
68
|
+
|
69
|
+
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):
|
70
|
+
|
71
|
+
# Add the public key as a trusted certificate
|
72
|
+
# (You only need to do this once)
|
73
|
+
$ curl -O https://raw.github.com/net-ssh/net-ssh/master/gem-public_cert.pem
|
74
|
+
$ gem cert --add gem-public_cert.pem
|
75
|
+
|
76
|
+
Then, when install the gem, do so with high security:
|
77
|
+
|
78
|
+
$ gem install net-ssh-multi -P HighSecurity
|
79
|
+
|
80
|
+
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.
|
81
|
+
|
63
82
|
|
64
83
|
== LICENSE:
|
65
84
|
|
data/Rakefile
CHANGED
@@ -1,85 +1,59 @@
|
|
1
|
+
require "rubygems"
|
2
|
+
require "rake"
|
3
|
+
require "rake/clean"
|
4
|
+
require "rdoc/task"
|
1
5
|
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
6
|
+
task :default => ["build"]
|
7
|
+
CLEAN.include [ 'pkg', 'rdoc' ]
|
8
|
+
name = "net-ssh-multi"
|
9
|
+
|
10
|
+
$:.unshift File.join(File.dirname(__FILE__), 'lib')
|
11
|
+
require './lib/net/ssh/multi/version'
|
12
|
+
version = Net::SSH::Multi::Version::STRING.dup
|
7
13
|
|
8
14
|
begin
|
9
|
-
require
|
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 = "Control multiple Net::SSH connections via a single interface."
|
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
|
+
s.add_dependency 'net-ssh-gateway', ">=1.2.0"
|
28
|
+
|
29
|
+
s.add_development_dependency 'test-unit'
|
30
|
+
s.add_development_dependency 'mocha'
|
31
|
+
|
32
|
+
s.license = "MIT"
|
33
|
+
|
34
|
+
s.signing_key = File.join('/mnt/gem/', 'gem-private_key.pem')
|
35
|
+
s.cert_chain = ['gem-public_cert.pem']
|
36
|
+
end
|
37
|
+
Jeweler::GemcutterTasks.new
|
10
38
|
rescue LoadError
|
11
|
-
|
12
|
-
end
|
13
|
-
|
14
|
-
|
15
|
-
task :default => :package
|
16
|
-
|
17
|
-
# CONFIG =============================================================
|
18
|
-
|
19
|
-
# Change the following according to your needs
|
20
|
-
README = "README.rdoc"
|
21
|
-
CHANGES = "CHANGELOG.rdoc"
|
22
|
-
THANKS = ''
|
23
|
-
|
24
|
-
# Files and directories to be deleted when you run "rake clean"
|
25
|
-
CLEAN.include [ 'pkg', '*.gem', '.config', 'doc']
|
26
|
-
|
27
|
-
# Virginia assumes your project and gemspec have the same name
|
28
|
-
name = 'net-ssh-multi'
|
29
|
-
load "#{name}.gemspec"
|
30
|
-
version = @spec.version
|
31
|
-
|
32
|
-
# That's it! The following defaults should allow you to get started
|
33
|
-
# on other things.
|
34
|
-
|
35
|
-
|
36
|
-
# TESTS/SPECS =========================================================
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
# INSTALL =============================================================
|
41
|
-
|
42
|
-
Rake::GemPackageTask.new(@spec) do |p|
|
43
|
-
p.need_tar = true if RUBY_PLATFORM !~ /mswin/
|
39
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
44
40
|
end
|
45
41
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
sh %{sudo gem install pkg/#{name}-#{version}.gem}
|
42
|
+
require 'rake/testtask'
|
43
|
+
Rake::TestTask.new do |t|
|
44
|
+
t.libs = ["lib", "test"]
|
50
45
|
end
|
51
|
-
task :uninstall => [ :clean ] do
|
52
|
-
sh %{sudo gem uninstall #{name}}
|
53
|
-
end
|
54
|
-
|
55
|
-
|
56
|
-
# RUBYFORGE RELEASE / PUBLISH TASKS ==================================
|
57
|
-
|
58
|
-
if @spec.rubyforge_project
|
59
|
-
desc 'Publish website to rubyforge'
|
60
|
-
task 'publish:rdoc' => 'doc/index.html' do
|
61
|
-
sh "scp -r doc/* rubyforge.org:/var/www/gforge-projects/#{name}/ssh/v2/api/"
|
62
|
-
end
|
63
|
-
|
64
|
-
desc 'Public release to rubyforge'
|
65
|
-
task 'publish:gem' => [:package] do |t|
|
66
|
-
sh <<-end
|
67
|
-
rubyforge add_release -o Any -a #{CHANGES} -f -n #{README} #{name} #{name} #{@spec.version} pkg/#{name}-#{@spec.version}.gem &&
|
68
|
-
rubyforge add_file -o Any -a #{CHANGES} -f -n #{README} #{name} #{name} #{@spec.version} pkg/#{name}-#{@spec.version}.tgz
|
69
|
-
end
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
# RUBY DOCS TASK ==================================
|
76
46
|
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
47
|
+
extra_files = %w[LICENSE.txt THANKS.txt CHANGES.txt ]
|
48
|
+
RDoc::Task.new do |rdoc|
|
49
|
+
rdoc.rdoc_dir = "rdoc"
|
50
|
+
rdoc.title = "#{name} #{version}"
|
51
|
+
rdoc.generator = 'hanna' # gem install hanna-nouveau
|
52
|
+
rdoc.main = 'README.rdoc'
|
53
|
+
rdoc.rdoc_files.include("README*")
|
54
|
+
rdoc.rdoc_files.include("bin/*.rb")
|
55
|
+
rdoc.rdoc_files.include("lib/**/*.rb")
|
56
|
+
extra_files.each { |file|
|
57
|
+
rdoc.rdoc_files.include(file) if File.exists?(file)
|
58
|
+
}
|
85
59
|
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-----
|
@@ -0,0 +1,75 @@
|
|
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 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "net-ssh-multi"
|
8
|
+
s.version = "1.2.0"
|
9
|
+
|
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 = "Control multiple Net::SSH connections via a single interface."
|
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
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"gem-public_cert.pem",
|
26
|
+
"lib/net/ssh/multi.rb",
|
27
|
+
"lib/net/ssh/multi/channel.rb",
|
28
|
+
"lib/net/ssh/multi/channel_proxy.rb",
|
29
|
+
"lib/net/ssh/multi/dynamic_server.rb",
|
30
|
+
"lib/net/ssh/multi/pending_connection.rb",
|
31
|
+
"lib/net/ssh/multi/server.rb",
|
32
|
+
"lib/net/ssh/multi/server_list.rb",
|
33
|
+
"lib/net/ssh/multi/session.rb",
|
34
|
+
"lib/net/ssh/multi/session_actions.rb",
|
35
|
+
"lib/net/ssh/multi/subsession.rb",
|
36
|
+
"lib/net/ssh/multi/version.rb",
|
37
|
+
"net-ssh-multi.gemspec",
|
38
|
+
"test/channel_test.rb",
|
39
|
+
"test/common.rb",
|
40
|
+
"test/multi_test.rb",
|
41
|
+
"test/server_test.rb",
|
42
|
+
"test/session_actions_test.rb",
|
43
|
+
"test/session_test.rb",
|
44
|
+
"test/test_all.rb"
|
45
|
+
]
|
46
|
+
s.homepage = "https://github.com/net-ssh/net-scp"
|
47
|
+
s.licenses = ["MIT"]
|
48
|
+
s.require_paths = ["lib"]
|
49
|
+
s.rubyforge_project = "net-ssh-multi"
|
50
|
+
s.rubygems_version = "1.8.25"
|
51
|
+
s.signing_key = "/mnt/gem/gem-private_key.pem"
|
52
|
+
s.summary = "Control multiple Net::SSH connections via a single interface."
|
53
|
+
|
54
|
+
if s.respond_to? :specification_version then
|
55
|
+
s.specification_version = 3
|
56
|
+
|
57
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
58
|
+
s.add_runtime_dependency(%q<net-ssh>, [">= 2.6.5"])
|
59
|
+
s.add_runtime_dependency(%q<net-ssh-gateway>, [">= 1.2.0"])
|
60
|
+
s.add_development_dependency(%q<test-unit>, [">= 0"])
|
61
|
+
s.add_development_dependency(%q<mocha>, [">= 0"])
|
62
|
+
else
|
63
|
+
s.add_dependency(%q<net-ssh>, [">= 2.6.5"])
|
64
|
+
s.add_dependency(%q<net-ssh-gateway>, [">= 1.2.0"])
|
65
|
+
s.add_dependency(%q<test-unit>, [">= 0"])
|
66
|
+
s.add_dependency(%q<mocha>, [">= 0"])
|
67
|
+
end
|
68
|
+
else
|
69
|
+
s.add_dependency(%q<net-ssh>, [">= 2.6.5"])
|
70
|
+
s.add_dependency(%q<net-ssh-gateway>, [">= 1.2.0"])
|
71
|
+
s.add_dependency(%q<test-unit>, [">= 0"])
|
72
|
+
s.add_dependency(%q<mocha>, [">= 0"])
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
metadata
CHANGED
@@ -1,55 +1,122 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: net-ssh-multi
|
3
|
-
version: !ruby/object:Gem::Version
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.0
|
4
5
|
prerelease:
|
5
|
-
version: "1.1"
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- Jamis Buck
|
9
9
|
- Delano Mandelbaum
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
|
-
cert_chain:
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
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
|
18
44
|
name: net-ssh
|
19
|
-
|
20
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
21
46
|
none: false
|
22
|
-
requirements:
|
23
|
-
- -
|
24
|
-
- !ruby/object:Gem::Version
|
25
|
-
version: 2.
|
47
|
+
requirements:
|
48
|
+
- - ! '>='
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 2.6.5
|
26
51
|
type: :runtime
|
27
|
-
version_requirements: *id001
|
28
|
-
- !ruby/object:Gem::Dependency
|
29
|
-
name: net-ssh-gateway
|
30
52
|
prerelease: false
|
31
|
-
|
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: net-ssh-gateway
|
61
|
+
requirement: !ruby/object:Gem::Requirement
|
32
62
|
none: false
|
33
|
-
requirements:
|
34
|
-
- -
|
35
|
-
- !ruby/object:Gem::Version
|
36
|
-
version:
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 1.2.0
|
37
67
|
type: :runtime
|
38
|
-
|
68
|
+
prerelease: false
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ! '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: 1.2.0
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: test-unit
|
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'
|
91
|
+
- !ruby/object:Gem::Dependency
|
92
|
+
name: mocha
|
93
|
+
requirement: !ruby/object:Gem::Requirement
|
94
|
+
none: false
|
95
|
+
requirements:
|
96
|
+
- - ! '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
type: :development
|
100
|
+
prerelease: false
|
101
|
+
version_requirements: !ruby/object:Gem::Requirement
|
102
|
+
none: false
|
103
|
+
requirements:
|
104
|
+
- - ! '>='
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '0'
|
39
107
|
description: Control multiple Net::SSH connections via a single interface.
|
40
|
-
email:
|
41
|
-
- net-ssh@solutious.com
|
108
|
+
email: net-ssh@solutious.com
|
42
109
|
executables: []
|
43
|
-
|
44
110
|
extensions: []
|
45
|
-
|
46
|
-
|
111
|
+
extra_rdoc_files:
|
112
|
+
- LICENSE.txt
|
47
113
|
- README.rdoc
|
48
|
-
|
49
|
-
|
50
|
-
-
|
114
|
+
files:
|
115
|
+
- CHANGES.txt
|
116
|
+
- LICENSE.txt
|
51
117
|
- README.rdoc
|
52
118
|
- Rakefile
|
119
|
+
- gem-public_cert.pem
|
53
120
|
- lib/net/ssh/multi.rb
|
54
121
|
- lib/net/ssh/multi/channel.rb
|
55
122
|
- lib/net/ssh/multi/channel_proxy.rb
|
@@ -61,6 +128,7 @@ files:
|
|
61
128
|
- lib/net/ssh/multi/session_actions.rb
|
62
129
|
- lib/net/ssh/multi/subsession.rb
|
63
130
|
- lib/net/ssh/multi/version.rb
|
131
|
+
- net-ssh-multi.gemspec
|
64
132
|
- test/channel_test.rb
|
65
133
|
- test/common.rb
|
66
134
|
- test/multi_test.rb
|
@@ -68,37 +136,29 @@ files:
|
|
68
136
|
- test/session_actions_test.rb
|
69
137
|
- test/session_test.rb
|
70
138
|
- test/test_all.rb
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
139
|
+
homepage: https://github.com/net-ssh/net-scp
|
140
|
+
licenses:
|
141
|
+
- MIT
|
75
142
|
post_install_message:
|
76
|
-
rdoc_options:
|
77
|
-
|
78
|
-
- --title
|
79
|
-
- Control multiple Net::SSH connections via a single interface.
|
80
|
-
- --main
|
81
|
-
- README.rdoc
|
82
|
-
require_paths:
|
143
|
+
rdoc_options: []
|
144
|
+
require_paths:
|
83
145
|
- lib
|
84
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
146
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
147
|
none: false
|
86
|
-
requirements:
|
87
|
-
- -
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version:
|
90
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - ! '>='
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0'
|
152
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
153
|
none: false
|
92
|
-
requirements:
|
93
|
-
- -
|
94
|
-
- !ruby/object:Gem::Version
|
95
|
-
version:
|
154
|
+
requirements:
|
155
|
+
- - ! '>='
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0'
|
96
158
|
requirements: []
|
97
|
-
|
98
159
|
rubyforge_project: net-ssh-multi
|
99
|
-
rubygems_version: 1.
|
160
|
+
rubygems_version: 1.8.25
|
100
161
|
signing_key:
|
101
162
|
specification_version: 3
|
102
163
|
summary: Control multiple Net::SSH connections via a single interface.
|
103
164
|
test_files: []
|
104
|
-
|
metadata.gz.sig
ADDED
Binary file
|