public
Description: Pure Ruby implementation of an SSH (protocol 2) client
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-ssh.git
Search Repo:
switch to echoe over hoe
jamis (author)
Sat Mar 22 20:58:53 -0700 2008
commit  f20f0ff56ec22b85c34541b362e5301ad8285ba6
tree    15c9996da053e9c93d4114b5b43c3316edb19abb
parent  6c38e1fe640d805cc6962db2e191bd0085d46b2a
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
0
@@ -1 +1,17 @@
0
+=== (unreleased)
0
+
0
+* Partial support for ~/.ssh/config (and related) SSH configuration files [Daniel J. Berger, Jamis Buck]
0
+
0
+* Added Net::SSH::Test to facilitate testing complex SSH state machines [Jamis Buck]
0
+
0
+* Reworked Net::SSH::Prompt to use conditionally-selected modules [Jamis Buck, suggested by James Rosen]
0
+
0
+* Added Channel#eof? and Channel#eof! [Jamis Buck]
0
+
0
+* Fixed bug in strict host key verifier on cache miss [Mike Timm]
0
+
0
+
0
+=== 2.0 Preview Release 1 (1.99.0) / 21 Aug 2007
0
+
0
+* First preview release of Net::SSH v2
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0
@@ -1,25 +1 @@
0
-=== (unreleased)
0
-
0
-* 2 major enhancements
0
-
0
- * Partial support for ~/.ssh/config (and related) SSH configuration files [Daniel J. Berger, Jamis Buck]
0
-
0
- * Added Net::SSH::Test to facilitate testing complex SSH state machines [Jamis Buck]
0
-
0
-* 2 minor enhancements
0
-
0
- * Reworked Net::SSH::Prompt to use conditionally-selected modules [Jamis Buck, suggested by James Rosen]
0
-
0
- * Added Channel#eof? and Channel#eof! [Jamis Buck]
0
-
0
-* 1 minor bug fix
0
-
0
- * Fixed bug in strict host key verifier on cache miss [Mike Timm]
0
-
0
-
0
-=== 2.0 Preview Release 1 (1.99.0) / 21 Aug 2007
0
-
0
-* 1 major enhancement
0
-
0
- * First preview release of Net::SSH v2
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
0
@@ -1 +1,103 @@
0
+CHANGELOG.rdoc
0
+lib/net/ssh/authentication/agent.rb
0
+lib/net/ssh/authentication/constants.rb
0
+lib/net/ssh/authentication/key_manager.rb
0
+lib/net/ssh/authentication/methods/abstract.rb
0
+lib/net/ssh/authentication/methods/hostbased.rb
0
+lib/net/ssh/authentication/methods/keyboard_interactive.rb
0
+lib/net/ssh/authentication/methods/password.rb
0
+lib/net/ssh/authentication/methods/publickey.rb
0
+lib/net/ssh/authentication/pageant.rb
0
+lib/net/ssh/authentication/session.rb
0
+lib/net/ssh/buffer.rb
0
+lib/net/ssh/buffered_io.rb
0
+lib/net/ssh/config.rb
0
+lib/net/ssh/connection/channel.rb
0
+lib/net/ssh/connection/constants.rb
0
+lib/net/ssh/connection/session.rb
0
+lib/net/ssh/connection/term.rb
0
+lib/net/ssh/errors.rb
0
+lib/net/ssh/key_factory.rb
0
+lib/net/ssh/known_hosts.rb
0
+lib/net/ssh/loggable.rb
0
+lib/net/ssh/packet.rb
0
+lib/net/ssh/prompt.rb
0
+lib/net/ssh/proxy/errors.rb
0
+lib/net/ssh/proxy/http.rb
0
+lib/net/ssh/proxy/socks4.rb
0
+lib/net/ssh/proxy/socks5.rb
0
+lib/net/ssh/service/forward.rb
0
+lib/net/ssh/test/channel.rb
0
+lib/net/ssh/test/extensions.rb
0
+lib/net/ssh/test/kex.rb
0
+lib/net/ssh/test/local_packet.rb
0
+lib/net/ssh/test/packet.rb
0
+lib/net/ssh/test/remote_packet.rb
0
+lib/net/ssh/test/script.rb
0
+lib/net/ssh/test/socket.rb
0
+lib/net/ssh/test.rb
0
+lib/net/ssh/transport/algorithms.rb
0
+lib/net/ssh/transport/cipher_factory.rb
0
+lib/net/ssh/transport/constants.rb
0
+lib/net/ssh/transport/hmac/abstract.rb
0
+lib/net/ssh/transport/hmac/md5.rb
0
+lib/net/ssh/transport/hmac/md5_96.rb
0
+lib/net/ssh/transport/hmac/none.rb
0
+lib/net/ssh/transport/hmac/sha1.rb
0
+lib/net/ssh/transport/hmac/sha1_96.rb
0
+lib/net/ssh/transport/hmac.rb
0
+lib/net/ssh/transport/identity_cipher.rb
0
+lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb
0
+lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb
0
+lib/net/ssh/transport/kex.rb
0
+lib/net/ssh/transport/openssl.rb
0
+lib/net/ssh/transport/packet_stream.rb
0
+lib/net/ssh/transport/server_version.rb
0
+lib/net/ssh/transport/session.rb
0
+lib/net/ssh/transport/state.rb
0
+lib/net/ssh/verifiers/lenient.rb
0
+lib/net/ssh/verifiers/null.rb
0
+lib/net/ssh/verifiers/strict.rb
0
+lib/net/ssh/version.rb
0
+lib/net/ssh.rb
0
+Manifest.txt
0
+Rakefile
0
+README.rdoc
0
+setup.rb
0
+test/authentication/methods/common.rb
0
+test/authentication/methods/test_abstract.rb
0
+test/authentication/methods/test_hostbased.rb
0
+test/authentication/methods/test_keyboard_interactive.rb
0
+test/authentication/methods/test_password.rb
0
+test/authentication/methods/test_publickey.rb
0
+test/authentication/test_agent.rb
0
+test/authentication/test_key_manager.rb
0
+test/authentication/test_session.rb
0
+test/common.rb
0
+test/configs/exact_match
0
+test/configs/wild_cards
0
+test/connection/test_channel.rb
0
+test/connection/test_session.rb
0
+test/test_all.rb
0
+test/test_buffer.rb
0
+test/test_buffered_io.rb
0
+test/test_config.rb
0
+test/test_key_factory.rb
0
+test/transport/hmac/test_md5.rb
0
+test/transport/hmac/test_md5_96.rb
0
+test/transport/hmac/test_none.rb
0
+test/transport/hmac/test_sha1.rb
0
+test/transport/hmac/test_sha1_96.rb
0
+test/transport/kex/test_diffie_hellman_group1_sha1.rb
0
+test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb
0
+test/transport/test_algorithms.rb
0
+test/transport/test_cipher_factory.rb
0
+test/transport/test_hmac.rb
0
+test/transport/test_identity_cipher.rb
0
+test/transport/test_packet_stream.rb
0
+test/transport/test_server_version.rb
0
+test/transport/test_session.rb
0
+test/transport/test_state.rb
0
+THANKS.rdoc
0
+Manifest
...
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0
@@ -1,102 +1 @@
0
-lib/net/ssh/authentication/agent.rb
0
-lib/net/ssh/authentication/constants.rb
0
-lib/net/ssh/authentication/key_manager.rb
0
-lib/net/ssh/authentication/methods/abstract.rb
0
-lib/net/ssh/authentication/methods/hostbased.rb
0
-lib/net/ssh/authentication/methods/keyboard_interactive.rb
0
-lib/net/ssh/authentication/methods/password.rb
0
-lib/net/ssh/authentication/methods/publickey.rb
0
-lib/net/ssh/authentication/pageant.rb
0
-lib/net/ssh/authentication/session.rb
0
-lib/net/ssh/buffer.rb
0
-lib/net/ssh/buffered_io.rb
0
-lib/net/ssh/config.rb
0
-lib/net/ssh/connection/channel.rb
0
-lib/net/ssh/connection/constants.rb
0
-lib/net/ssh/connection/session.rb
0
-lib/net/ssh/connection/term.rb
0
-lib/net/ssh/errors.rb
0
-lib/net/ssh/key_factory.rb
0
-lib/net/ssh/known_hosts.rb
0
-lib/net/ssh/loggable.rb
0
-lib/net/ssh/packet.rb
0
-lib/net/ssh/prompt.rb
0
-lib/net/ssh/proxy/errors.rb
0
-lib/net/ssh/proxy/http.rb
0
-lib/net/ssh/proxy/socks4.rb
0
-lib/net/ssh/proxy/socks5.rb
0
-lib/net/ssh/service/forward.rb
0
-lib/net/ssh/test/channel.rb
0
-lib/net/ssh/test/extensions.rb
0
-lib/net/ssh/test/kex.rb
0
-lib/net/ssh/test/local_packet.rb
0
-lib/net/ssh/test/packet.rb
0
-lib/net/ssh/test/remote_packet.rb
0
-lib/net/ssh/test/script.rb
0
-lib/net/ssh/test/socket.rb
0
-lib/net/ssh/test.rb
0
-lib/net/ssh/transport/algorithms.rb
0
-lib/net/ssh/transport/cipher_factory.rb
0
-lib/net/ssh/transport/constants.rb
0
-lib/net/ssh/transport/hmac/abstract.rb
0
-lib/net/ssh/transport/hmac/md5.rb
0
-lib/net/ssh/transport/hmac/md5_96.rb
0
-lib/net/ssh/transport/hmac/none.rb
0
-lib/net/ssh/transport/hmac/sha1.rb
0
-lib/net/ssh/transport/hmac/sha1_96.rb
0
-lib/net/ssh/transport/hmac.rb
0
-lib/net/ssh/transport/identity_cipher.rb
0
-lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb
0
-lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb
0
-lib/net/ssh/transport/kex.rb
0
-lib/net/ssh/transport/openssl.rb
0
-lib/net/ssh/transport/packet_stream.rb
0
-lib/net/ssh/transport/server_version.rb
0
-lib/net/ssh/transport/session.rb
0
-lib/net/ssh/transport/state.rb
0
-lib/net/ssh/verifiers/lenient.rb
0
-lib/net/ssh/verifiers/null.rb
0
-lib/net/ssh/verifiers/strict.rb
0
-lib/net/ssh/version.rb
0
-lib/net/ssh.rb
0
-test/authentication/methods/common.rb
0
-test/authentication/methods/test_abstract.rb
0
-test/authentication/methods/test_hostbased.rb
0
-test/authentication/methods/test_keyboard_interactive.rb
0
-test/authentication/methods/test_password.rb
0
-test/authentication/methods/test_publickey.rb
0
-test/authentication/test_agent.rb
0
-test/authentication/test_key_manager.rb
0
-test/authentication/test_session.rb
0
-test/common.rb
0
-test/configs/exact_match
0
-test/configs/wild_cards
0
-test/connection/test_channel.rb
0
-test/connection/test_session.rb
0
-test/test_all.rb
0
-test/test_buffer.rb
0
-test/test_buffered_io.rb
0
-test/test_config.rb
0
-test/test_key_factory.rb
0
-test/transport/hmac/test_md5.rb
0
-test/transport/hmac/test_md5_96.rb
0
-test/transport/hmac/test_none.rb
0
-test/transport/hmac/test_sha1.rb
0
-test/transport/hmac/test_sha1_96.rb
0
-test/transport/kex/test_diffie_hellman_group1_sha1.rb
0
-test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb
0
-test/transport/test_algorithms.rb
0
-test/transport/test_cipher_factory.rb
0
-test/transport/test_hmac.rb
0
-test/transport/test_identity_cipher.rb
0
-test/transport/test_packet_stream.rb
0
-test/transport/test_server_version.rb
0
-test/transport/test_session.rb
0
-test/transport/test_state.rb
0
-History.txt
0
-Manifest.txt
0
-README.txt
0
-Thanks.txt
0
-Rakefile
0
-setup.rb
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
0
@@ -1 +1,106 @@
0
+= Net::SSH
0
+
0
+* http://net-ssh.rubyforge.org/ssh
0
+
0
+== DESCRIPTION:
0
+
0
+Net::SSH is 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.
0
+
0
+== FEATURES:
0
+
0
+* Execute processes on remote servers and capture their output
0
+* Run multiple processes in parallel over a single SSH connection
0
+* Support for SSH subsystems
0
+* Forward local and remote ports via an SSH connection
0
+
0
+== SYNOPSIS:
0
+
0
+In a nutshell:
0
+
0
+ require 'net/ssh'
0
+
0
+ Net::SSH.start('host', 'user', :password => "password") do |ssh|
0
+ # capture all stderr and stdout output from a remote process
0
+ output = ssh.exec!("hostname")
0
+
0
+ # capture only stdout matching a particular pattern
0
+ stdout = ""
0
+ ssh.exec!("ls -l /home/jamis") do |channel, stream, data|
0
+ stdout << data if stream == :stdout
0
+ end
0
+ puts stdout
0
+
0
+ # run multiple processes in parallel to completion
0
+ ssh.exec "sed ..."
0
+ ssh.exec "awk ..."
0
+ ssh.exec "rm -rf ..."
0
+ ssh.loop
0
+
0
+ # open a new channel and configure a minimal set of callbacks, then run
0
+ # the event loop until the channel finishes (closes)
0
+ channel = ssh.open_channel do |ch|
0
+ ch.exec "/usr/local/bin/ruby /path/to/file.rb" do |ch, success|
0
+ raise "could not execute command" unless success
0
+
0
+ # "on_data" is called when the process writes something to stdout
0
+ ch.on_data do |c, data|
0
+ $STDOUT.print data
0
+ end
0
+
0
+ # "on_extended_data" is called when the process writes something to stderr
0
+ ch.on_extended_data do |c, type, data|
0
+ $STDERR.print data
0
+ end
0
+
0
+ ch.on_close { puts "done!" }
0
+ end
0
+ end
0
+
0
+ channel.wait
0
+
0
+ # forward connections on local port 1234 to port 80 of www.capify.org
0
+ ssh.forward.local(1234, "www.capify.org", 80)
0
+ ssh.loop { true }
0
+ end
0
+
0
+See Net::SSH for more documentation, and links to further information.
0
+
0
+== REQUIREMENTS:
0
+
0
+The only requirement you might be missing is the OpenSSL bindings for Ruby. These are built by default on most platforms, but you can verify that they're built and installed on your system by running the following command line:
0
+
0
+ ruby -ropenssl -e 'puts OpenSSL::OPENSSL_VERSION'
0
+
0
+If that spits out something like "OpenSSL 0.9.8g 19 Oct 2007", then you're set. If you get an error, then you'll need to see about rebuilding ruby with OpenSSL support, or (if your platform supports it) installing the OpenSSL bindings separately.
0
+
0
+Additionally: if you are going to be having Net::SSH prompt you for things like passwords or certificate passphrases, you'll want to have either the Highline (recommended) or Termios (unix systems only) gem installed, so that the passwords don't echo in clear text.
0
+
0
+== INSTALL:
0
+
0
+* gem install net-ssh (might need sudo privileges)
0
+
0
+== LICENSE:
0
+
0
+(The MIT License)
0
+
0
+Copyright (c) 2008 Jamis Buck <jamis@37signals.com>
0
+
0
+Permission is hereby granted, free of charge, to any person obtaining
0
+a copy of this software and associated documentation files (the
0
+'Software'), to deal in the Software without restriction, including
0
+without limitation the rights to use, copy, modify, merge, publish,
0
+distribute, sublicense, and/or sell copies of the Software, and to
0
+permit persons to whom the Software is furnished to do so, subject to
0
+the following conditions:
0
+
0
+The above copyright notice and this permission notice shall be
0
+included in all copies or substantial portions of the Software.
0
+
0
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
0
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
0
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
0
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
0
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
0
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
0
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
...
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0
@@ -1,106 +1 @@
0
-= Net::SSH
0
-
0
-* http://net-ssh.rubyforge.org/ssh
0
-
0
-== DESCRIPTION:
0
-
0
-Net::SSH is 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.
0
-
0
-== FEATURES:
0
-
0
-* Execute processes on remote servers and capture their output
0
-* Run multiple processes in parallel over a single SSH connection
0
-* Support for SSH subsystems
0
-* Forward local and remote ports via an SSH connection
0
-
0
-== SYNOPSIS:
0
-
0
-In a nutshell:
0
-
0
- require 'net/ssh'
0
-
0
- Net::SSH.start('host', 'user', :password => "password") do |ssh|
0
- # capture all stderr and stdout output from a remote process
0
- output = ssh.exec!("hostname")
0
-
0
- # capture only stdout matching a particular pattern
0
- stdout = ""
0
- ssh.exec!("ls -l /home/jamis") do |channel, stream, data|
0
- stdout << data if stream == :stdout
0
- end
0
- puts stdout
0
-
0
- # run multiple processes in parallel to completion
0
- ssh.exec "sed ..."
0
- ssh.exec "awk ..."
0
- ssh.exec "rm -rf ..."
0
- ssh.loop
0
-
0
- # open a new channel and configure a minimal set of callbacks, then run
0
- # the event loop until the channel finishes (closes)
0
- channel = ssh.open_channel do |ch|
0
- ch.exec "/usr/local/bin/ruby /path/to/file.rb" do |ch, success|
0
- raise "could not execute command" unless success
0
-
0
- # "on_data" is called when the process writes something to stdout
0
- ch.on_data do |c, data|
0
- $STDOUT.print data
0
- end
0
-
0
- # "on_extended_data" is called when the process writes something to stderr
0
- ch.on_extended_data do |c, type, data|
0
- $STDERR.print data
0
- end
0
-
0
- ch.on_close { puts "done!" }
0
- end
0
- end
0
-
0
- channel.wait
0
-
0
- # forward connections on local port 1234 to port 80 of www.capify.org
0
- ssh.forward.local(1234, "www.capify.org", 80)
0
- ssh.loop { true }
0
- end
0
-
0
-See Net::SSH for more documentation, and links to further information.
0
-
0
-== REQUIREMENTS:
0
-
0
-The only requirement you might be missing is the OpenSSL bindings for Ruby. These are built by default on most platforms, but you can verify that they're built and installed on your system by running the following command line:
0
-
0
- ruby -ropenssl -e 'puts OpenSSL::OPENSSL_VERSION'
0
-
0
-If that spits out something like "OpenSSL 0.9.8g 19 Oct 2007", then you're set. If you get an error, then you'll need to see about rebuilding ruby with OpenSSL support, or (if your platform supports it) installing the OpenSSL bindings separately.
0
-
0
-Additionally: if you are going to be having Net::SSH prompt you for things like passwords or certificate passphrases, you'll want to have either the Highline (recommended) or Termios (unix systems only) gem installed, so that the passwords don't echo in clear text.
0
-
0
-== INSTALL:
0
-
0
-* gem install net-ssh (might need sudo privileges)
0
-
0
-== LICENSE:
0
-
0
-(The MIT License)
0
-
0
-Copyright (c) 2008 Jamis Buck <jamis@37signals.com>
0
-
0
-Permission is hereby granted, free of charge, to any person obtaining
0
-a copy of this software and associated documentation files (the
0
-'Software'), to deal in the Software without restriction, including
0
-without limitation the rights to use, copy, modify, merge, publish,
0
-distribute, sublicense, and/or sell copies of the Software, and to
0
-permit persons to whom the Software is furnished to do so, subject to
0
-the following conditions:
0
-
0
-The above copyright notice and this permission notice shall be
0
-included in all copies or substantial portions of the Software.
0
-
0
-THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
0
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
0
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
0
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
0
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
0
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
0
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
0
@@ -1 +1,17 @@
0
+Net::SSH was originally written by Jamis Buck <jamis@37signals.com>. In
0
+addition, the following individuals are gratefully acknowledged for their
0
+contributions:
0
+
0
+GOTOU Yuuzou <gotoyuzo@notwork.org>
0
+ * help and code related to OpenSSL
0
+
0
+Guillaume Marçs <guillaume.marcais@free.fr>
0
+ * support for communicating with the the PuTTY "pageant" process
0
+
0
+Daniel Berger <djberg96@yahoo.com>
0
+ * help getting unit tests in earlier Net::SSH versions to pass in Windows
0
+ * initial version of Net::SSH::Config provided inspiration and encouragement
0
+
0
+Chris Andrews <chris@nodnol.org> and Lee Jensen <lee@outerim.com>
0
+ * support for ssh agent forwarding
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0
@@ -1,17 +1 @@
0
-Net::SSH was originally written by Jamis Buck <jamis@37signals.com>. In
0
-addition, the following individuals are gratefully acknowledged for their
0
-contributions:
0
-
0
-GOTOU Yuuzou <gotoyuzo@notwork.org>
0
- * help and code related to OpenSSL
0
-
0
-Guillaume Marçs <guillaume.marcais@free.fr>
0
- * support for communicating with the the PuTTY "pageant" process
0
-
0
-Daniel Berger <djberg96@yahoo.com>
0
- * help getting unit tests in earlier Net::SSH versions to pass in Windows
0
- * initial version of Net::SSH::Config provided inspiration and encouragement
0
-
0
-Chris Andrews <chris@nodnol.org> and Lee Jensen <lee@outerim.com>
0
- * support for ssh agent forwarding

Comments

    No one has commented yet.