net-ssh 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,8 +14,8 @@
14
14
  </div>
15
15
  </td><td valign='middle' align='right'>
16
16
  <div class="info">
17
- Net::SSH Version: <strong>1.0.4</strong><br />
18
- Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
17
+ Net::SSH Version: <strong>1.0.5</strong><br />
18
+ Manual Last Updated: <strong>2006-01-02 16:57 UTC</strong>
19
19
  </div>
20
20
  </td></tr>
21
21
  </table>
@@ -14,8 +14,8 @@
14
14
  </div>
15
15
  </td><td valign='middle' align='right'>
16
16
  <div class="info">
17
- Net::SSH Version: <strong>1.0.4</strong><br />
18
- Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
17
+ Net::SSH Version: <strong>1.0.5</strong><br />
18
+ Manual Last Updated: <strong>2006-01-02 16:57 UTC</strong>
19
19
  </div>
20
20
  </td></tr>
21
21
  </table>
@@ -14,8 +14,8 @@
14
14
  </div>
15
15
  </td><td valign='middle' align='right'>
16
16
  <div class="info">
17
- Net::SSH Version: <strong>1.0.4</strong><br />
18
- Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
17
+ Net::SSH Version: <strong>1.0.5</strong><br />
18
+ Manual Last Updated: <strong>2006-01-02 16:57 UTC</strong>
19
19
  </div>
20
20
  </td></tr>
21
21
  </table>
@@ -14,8 +14,8 @@
14
14
  </div>
15
15
  </td><td valign='middle' align='right'>
16
16
  <div class="info">
17
- Net::SSH Version: <strong>1.0.4</strong><br />
18
- Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
17
+ Net::SSH Version: <strong>1.0.5</strong><br />
18
+ Manual Last Updated: <strong>2006-01-02 16:57 UTC</strong>
19
19
  </div>
20
20
  </td></tr>
21
21
  </table>
@@ -14,8 +14,8 @@
14
14
  </div>
15
15
  </td><td valign='middle' align='right'>
16
16
  <div class="info">
17
- Net::SSH Version: <strong>1.0.4</strong><br />
18
- Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
17
+ Net::SSH Version: <strong>1.0.5</strong><br />
18
+ Manual Last Updated: <strong>2006-01-02 16:57 UTC</strong>
19
19
  </div>
20
20
  </td></tr>
21
21
  </table>
@@ -14,8 +14,8 @@
14
14
  </div>
15
15
  </td><td valign='middle' align='right'>
16
16
  <div class="info">
17
- Net::SSH Version: <strong>1.0.4</strong><br />
18
- Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
17
+ Net::SSH Version: <strong>1.0.5</strong><br />
18
+ Manual Last Updated: <strong>2006-01-02 16:57 UTC</strong>
19
19
  </div>
20
20
  </td></tr>
21
21
  </table>
@@ -14,8 +14,8 @@
14
14
  </div>
15
15
  </td><td valign='middle' align='right'>
16
16
  <div class="info">
17
- Net::SSH Version: <strong>1.0.4</strong><br />
18
- Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
17
+ Net::SSH Version: <strong>1.0.5</strong><br />
18
+ Manual Last Updated: <strong>2006-01-02 16:57 UTC</strong>
19
19
  </div>
20
20
  </td></tr>
21
21
  </table>
@@ -14,8 +14,8 @@
14
14
  </div>
15
15
  </td><td valign='middle' align='right'>
16
16
  <div class="info">
17
- Net::SSH Version: <strong>1.0.4</strong><br />
18
- Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
17
+ Net::SSH Version: <strong>1.0.5</strong><br />
18
+ Manual Last Updated: <strong>2006-01-02 16:57 UTC</strong>
19
19
  </div>
20
20
  </td></tr>
21
21
  </table>
@@ -184,11 +184,17 @@ module Net
184
184
  self
185
185
  end
186
186
 
187
- # Delegates the the #reader_ready method of the transport session.
187
+ # Delegates to the #reader_ready method of the transport session.
188
188
  def reader_ready?
189
189
  @session.reader_ready?
190
190
  end
191
191
 
192
+ # Sends an innocuous packet to the server to test the connection. Can
193
+ # be used to defeat timeouts on long-running commands.
194
+ def ping!
195
+ @session.ping!
196
+ end
197
+
192
198
  #--
193
199
  # ====================================================================
194
200
  # MESSAGE HANDLERS
@@ -148,7 +148,7 @@ module Net
148
148
  def open_channel( type="session", data=nil, &block )
149
149
  sanity_check
150
150
  channel = @connection.open_channel( type, data )
151
- channel.on_confirm_open &block
151
+ channel.on_confirm_open(&block)
152
152
  channel
153
153
  end
154
154
 
@@ -158,7 +158,7 @@ module Net
158
158
  # are no more open channels. (See Net::SSH::Connection::Driver#loop).
159
159
  def loop( &block )
160
160
  sanity_check
161
- @connection.loop &block
161
+ @connection.loop(&block)
162
162
  end
163
163
 
164
164
  # Provides convenient access to services that have been registered with
@@ -310,6 +310,11 @@ module Net
310
310
  IO.select([@socket],nil,nil,0) != nil
311
311
  end
312
312
 
313
+ # Sends an IGNORE packet to the server, as a way to ping the connection
314
+ # and make sure the server knows the client is still active.
315
+ def ping!
316
+ send_message [IGNORE, 4, "ping"].pack("cNA4")
317
+ end
313
318
  end
314
319
 
315
320
  end
@@ -20,7 +20,7 @@ module Net
20
20
 
21
21
  MAJOR = 1
22
22
  MINOR = 0
23
- TINY = 4
23
+ TINY = 5
24
24
 
25
25
  STRING = [ MAJOR, MINOR, TINY ].join( "." )
26
26
 
metadata CHANGED
@@ -3,11 +3,11 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: net-ssh
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.4
7
- date: 2005-12-24 00:00:00 -07:00
6
+ version: 1.0.5
7
+ date: 2006-01-02 00:00:00 -07:00
8
8
  summary: Net::SSH is a pure-Ruby implementation of the SSH2 client protocol.
9
9
  require_paths:
10
- - lib
10
+ - lib
11
11
  email: jamis@37signals.com
12
12
  homepage: http://net-ssh.rubyforge.org
13
13
  rubyforge_project:
@@ -18,264 +18,261 @@ bindir: bin
18
18
  has_rdoc: true
19
19
  required_ruby_version: !ruby/object:Gem::Version::Requirement
20
20
  requirements:
21
- - - ">"
22
- - !ruby/object:Gem::Version
23
- version: 0.0.0
21
+ -
22
+ - ">"
23
+ - !ruby/object:Gem::Version
24
+ version: 0.0.0
24
25
  version:
25
26
  platform: ruby
26
27
  signing_key:
27
28
  cert_chain:
28
29
  authors:
29
- - Jamis Buck
30
+ - Jamis Buck
30
31
  files:
31
- - doc/LICENSE-BSD
32
- - doc/LICENSE-GPL
33
- - doc/LICENSE-RUBY
34
- - doc/manual
35
- - doc/manual-html
36
- - doc/manual/chapter.erb
37
- - doc/manual/example.erb
38
- - doc/manual/index.erb
39
- - doc/manual/manual.rb
40
- - doc/manual/manual.yml
41
- - doc/manual/page.erb
42
- - doc/manual/parts
43
- - doc/manual/stylesheets
44
- - doc/manual/tutorial.erb
45
- - doc/manual/parts/0000.txt
46
- - doc/manual/parts/0001.txt
47
- - doc/manual/parts/0002.txt
48
- - doc/manual/parts/0003.txt
49
- - doc/manual/parts/0004.txt
50
- - doc/manual/parts/0005.txt
51
- - doc/manual/parts/0006.txt
52
- - doc/manual/parts/0007.txt
53
- - doc/manual/parts/0008.txt
54
- - doc/manual/parts/0009.txt
55
- - doc/manual/parts/0010.txt
56
- - doc/manual/parts/0011.txt
57
- - doc/manual/parts/0012.txt
58
- - doc/manual/parts/0013.txt
59
- - doc/manual/parts/0014.txt
60
- - doc/manual/parts/0015.txt
61
- - doc/manual/parts/0016.txt
62
- - doc/manual/parts/0017.txt
63
- - doc/manual/parts/0018.txt
64
- - doc/manual/parts/0019.txt
65
- - doc/manual/parts/0020.txt
66
- - doc/manual/parts/0021.txt
67
- - doc/manual/parts/0022.txt
68
- - doc/manual/parts/0023.txt
69
- - doc/manual/parts/0024.txt
70
- - doc/manual/parts/0025.txt
71
- - doc/manual/parts/0026.txt
72
- - doc/manual/parts/0027.txt
73
- - doc/manual/parts/0028.txt
74
- - doc/manual/parts/0029.txt
75
- - doc/manual/parts/0030.txt
76
- - doc/manual/parts/0031.txt
77
- - doc/manual/stylesheets/manual.css
78
- - doc/manual/stylesheets/ruby.css
79
- - doc/manual-html/chapter-1.html
80
- - doc/manual-html/chapter-2.html
81
- - doc/manual-html/chapter-3.html
82
- - doc/manual-html/chapter-4.html
83
- - doc/manual-html/chapter-5.html
84
- - doc/manual-html/chapter-6.html
85
- - doc/manual-html/chapter-7.html
86
- - doc/manual-html/index.html
87
- - doc/manual-html/stylesheets
88
- - doc/manual-html/stylesheets/manual.css
89
- - doc/manual-html/stylesheets/ruby.css
90
- - lib/net
91
- - lib/net/ssh
92
- - lib/net/ssh.rb
93
- - lib/net/ssh/connection
94
- - lib/net/ssh/errors.rb
95
- - lib/net/ssh/proxy
96
- - lib/net/ssh/service
97
- - lib/net/ssh/session.rb
98
- - lib/net/ssh/transport
99
- - lib/net/ssh/userauth
100
- - lib/net/ssh/util
101
- - lib/net/ssh/version.rb
102
- - lib/net/ssh/connection/channel.rb
103
- - lib/net/ssh/connection/constants.rb
104
- - lib/net/ssh/connection/driver.rb
105
- - lib/net/ssh/connection/services.rb
106
- - lib/net/ssh/connection/term.rb
107
- - lib/net/ssh/proxy/errors.rb
108
- - lib/net/ssh/proxy/http.rb
109
- - lib/net/ssh/proxy/socks4.rb
110
- - lib/net/ssh/proxy/socks5.rb
111
- - lib/net/ssh/service/forward
112
- - lib/net/ssh/service/process
113
- - lib/net/ssh/service/services.rb
114
- - lib/net/ssh/service/shell
115
- - lib/net/ssh/service/forward/driver.rb
116
- - lib/net/ssh/service/forward/local-network-handler.rb
117
- - lib/net/ssh/service/forward/remote-network-handler.rb
118
- - lib/net/ssh/service/forward/services.rb
119
- - lib/net/ssh/service/process/driver.rb
120
- - lib/net/ssh/service/process/open.rb
121
- - lib/net/ssh/service/process/popen3.rb
122
- - lib/net/ssh/service/process/services.rb
123
- - lib/net/ssh/service/shell/driver.rb
124
- - lib/net/ssh/service/shell/services.rb
125
- - lib/net/ssh/service/shell/shell.rb
126
- - lib/net/ssh/service/shell/sync.rb
127
- - lib/net/ssh/transport/algorithm-negotiator.rb
128
- - lib/net/ssh/transport/compress
129
- - lib/net/ssh/transport/constants.rb
130
- - lib/net/ssh/transport/errors.rb
131
- - lib/net/ssh/transport/identity-cipher.rb
132
- - lib/net/ssh/transport/kex
133
- - lib/net/ssh/transport/ossl
134
- - lib/net/ssh/transport/packet-stream.rb
135
- - lib/net/ssh/transport/services.rb
136
- - lib/net/ssh/transport/session.rb
137
- - lib/net/ssh/transport/version-negotiator.rb
138
- - lib/net/ssh/transport/compress/compressor.rb
139
- - lib/net/ssh/transport/compress/decompressor.rb
140
- - lib/net/ssh/transport/compress/none-compressor.rb
141
- - lib/net/ssh/transport/compress/none-decompressor.rb
142
- - lib/net/ssh/transport/compress/services.rb
143
- - lib/net/ssh/transport/compress/zlib-compressor.rb
144
- - lib/net/ssh/transport/compress/zlib-decompressor.rb
145
- - lib/net/ssh/transport/kex/dh-gex.rb
146
- - lib/net/ssh/transport/kex/dh.rb
147
- - lib/net/ssh/transport/kex/services.rb
148
- - lib/net/ssh/transport/ossl/buffer-factory.rb
149
- - lib/net/ssh/transport/ossl/buffer.rb
150
- - lib/net/ssh/transport/ossl/cipher-factory.rb
151
- - lib/net/ssh/transport/ossl/digest-factory.rb
152
- - lib/net/ssh/transport/ossl/hmac
153
- - lib/net/ssh/transport/ossl/hmac-factory.rb
154
- - lib/net/ssh/transport/ossl/key-factory.rb
155
- - lib/net/ssh/transport/ossl/services.rb
156
- - lib/net/ssh/transport/ossl/hmac/hmac.rb
157
- - lib/net/ssh/transport/ossl/hmac/md5-96.rb
158
- - lib/net/ssh/transport/ossl/hmac/md5.rb
159
- - lib/net/ssh/transport/ossl/hmac/none.rb
160
- - lib/net/ssh/transport/ossl/hmac/services.rb
161
- - lib/net/ssh/transport/ossl/hmac/sha1-96.rb
162
- - lib/net/ssh/transport/ossl/hmac/sha1.rb
163
- - lib/net/ssh/userauth/agent.rb
164
- - lib/net/ssh/userauth/constants.rb
165
- - lib/net/ssh/userauth/driver.rb
166
- - lib/net/ssh/userauth/methods
167
- - lib/net/ssh/userauth/pageant.rb
168
- - lib/net/ssh/userauth/services.rb
169
- - lib/net/ssh/userauth/userkeys.rb
170
- - lib/net/ssh/userauth/methods/hostbased.rb
171
- - lib/net/ssh/userauth/methods/keyboard-interactive.rb
172
- - lib/net/ssh/userauth/methods/password.rb
173
- - lib/net/ssh/userauth/methods/publickey.rb
174
- - lib/net/ssh/userauth/methods/services.rb
175
- - lib/net/ssh/util/buffer.rb
176
- - lib/net/ssh/util/openssl.rb
177
- - lib/net/ssh/util/prompter.rb
178
- - examples/channel-demo.rb
179
- - examples/port-forward.rb
180
- - examples/process-demo.rb
181
- - examples/remote-net-port-forward.rb
182
- - examples/remote-port-forward.rb
183
- - examples/shell-demo.rb
184
- - examples/ssh-client.rb
185
- - examples/sync-shell-demo.rb
186
- - examples/tail-demo.rb
187
- - test/ALL-TESTS.rb
188
- - test/connection
189
- - test/proxy
190
- - test/service
191
- - test/tc_integration.rb
192
- - test/transport
193
- - test/userauth
194
- - test/util
195
- - test/connection/tc_channel.rb
196
- - test/connection/tc_driver.rb
197
- - test/connection/tc_integration.rb
198
- - test/proxy/tc_http.rb
199
- - test/proxy/tc_socks4.rb
200
- - test/proxy/tc_socks5.rb
201
- - test/service/forward
202
- - test/service/process
203
- - test/service/forward/tc_driver.rb
204
- - test/service/forward/tc_local_network_handler.rb
205
- - test/service/forward/tc_remote_network_handler.rb
206
- - test/service/process/tc_driver.rb
207
- - test/service/process/tc_integration.rb
208
- - test/service/process/tc_open.rb
209
- - test/service/process/tc_popen3.rb
210
- - test/transport/compress
211
- - test/transport/kex
212
- - test/transport/ossl
213
- - test/transport/tc_algorithm_negotiator.rb
214
- - test/transport/tc_identity_cipher.rb
215
- - test/transport/tc_integration.rb
216
- - test/transport/tc_packet_stream.rb
217
- - test/transport/tc_session.rb
218
- - test/transport/tc_version_negotiator.rb
219
- - test/transport/compress/tc_none_compress.rb
220
- - test/transport/compress/tc_none_decompress.rb
221
- - test/transport/compress/tc_zlib_compress.rb
222
- - test/transport/compress/tc_zlib_decompress.rb
223
- - test/transport/kex/tc_dh.rb
224
- - test/transport/kex/tc_dh_gex.rb
225
- - test/transport/ossl/fixtures
226
- - test/transport/ossl/hmac
227
- - test/transport/ossl/tc_buffer.rb
228
- - test/transport/ossl/tc_buffer_factory.rb
229
- - test/transport/ossl/tc_cipher_factory.rb
230
- - test/transport/ossl/tc_digest_factory.rb
231
- - test/transport/ossl/tc_hmac_factory.rb
232
- - test/transport/ossl/tc_key_factory.rb
233
- - test/transport/ossl/fixtures/dsa-encrypted
234
- - test/transport/ossl/fixtures/dsa-encrypted-bad
235
- - test/transport/ossl/fixtures/dsa-unencrypted
236
- - test/transport/ossl/fixtures/dsa-unencrypted-bad
237
- - test/transport/ossl/fixtures/dsa-unencrypted.pub
238
- - test/transport/ossl/fixtures/not-a-private-key
239
- - test/transport/ossl/fixtures/not-supported
240
- - test/transport/ossl/fixtures/rsa-encrypted
241
- - test/transport/ossl/fixtures/rsa-encrypted-bad
242
- - test/transport/ossl/fixtures/rsa-unencrypted
243
- - test/transport/ossl/fixtures/rsa-unencrypted-bad
244
- - test/transport/ossl/fixtures/rsa-unencrypted.pub
245
- - test/transport/ossl/hmac/tc_hmac.rb
246
- - test/transport/ossl/hmac/tc_md5.rb
247
- - test/transport/ossl/hmac/tc_md5_96.rb
248
- - test/transport/ossl/hmac/tc_none.rb
249
- - test/transport/ossl/hmac/tc_sha1.rb
250
- - test/transport/ossl/hmac/tc_sha1_96.rb
251
- - test/userauth/methods
252
- - test/userauth/tc_agent.rb
253
- - test/userauth/tc_driver.rb
254
- - test/userauth/tc_integration.rb
255
- - test/userauth/tc_userkeys.rb
256
- - test/userauth/methods/tc_hostbased.rb
257
- - test/userauth/methods/tc_password.rb
258
- - test/userauth/methods/tc_publickey.rb
259
- - test/util/tc_buffer.rb
32
+ - doc/LICENSE-BSD
33
+ - doc/LICENSE-GPL
34
+ - doc/LICENSE-RUBY
35
+ - doc/manual
36
+ - doc/manual-html
37
+ - doc/manual/chapter.erb
38
+ - doc/manual/example.erb
39
+ - doc/manual/index.erb
40
+ - doc/manual/manual.rb
41
+ - doc/manual/manual.yml
42
+ - doc/manual/page.erb
43
+ - doc/manual/parts
44
+ - doc/manual/stylesheets
45
+ - doc/manual/tutorial.erb
46
+ - doc/manual/parts/0000.txt
47
+ - doc/manual/parts/0001.txt
48
+ - doc/manual/parts/0002.txt
49
+ - doc/manual/parts/0003.txt
50
+ - doc/manual/parts/0004.txt
51
+ - doc/manual/parts/0005.txt
52
+ - doc/manual/parts/0006.txt
53
+ - doc/manual/parts/0007.txt
54
+ - doc/manual/parts/0008.txt
55
+ - doc/manual/parts/0009.txt
56
+ - doc/manual/parts/0010.txt
57
+ - doc/manual/parts/0011.txt
58
+ - doc/manual/parts/0012.txt
59
+ - doc/manual/parts/0013.txt
60
+ - doc/manual/parts/0014.txt
61
+ - doc/manual/parts/0015.txt
62
+ - doc/manual/parts/0016.txt
63
+ - doc/manual/parts/0017.txt
64
+ - doc/manual/parts/0018.txt
65
+ - doc/manual/parts/0019.txt
66
+ - doc/manual/parts/0020.txt
67
+ - doc/manual/parts/0021.txt
68
+ - doc/manual/parts/0022.txt
69
+ - doc/manual/parts/0023.txt
70
+ - doc/manual/parts/0024.txt
71
+ - doc/manual/parts/0025.txt
72
+ - doc/manual/parts/0026.txt
73
+ - doc/manual/parts/0027.txt
74
+ - doc/manual/parts/0028.txt
75
+ - doc/manual/parts/0029.txt
76
+ - doc/manual/parts/0030.txt
77
+ - doc/manual/parts/0031.txt
78
+ - doc/manual/stylesheets/manual.css
79
+ - doc/manual/stylesheets/ruby.css
80
+ - doc/manual-html/chapter-1.html
81
+ - doc/manual-html/chapter-2.html
82
+ - doc/manual-html/chapter-3.html
83
+ - doc/manual-html/chapter-4.html
84
+ - doc/manual-html/chapter-5.html
85
+ - doc/manual-html/chapter-6.html
86
+ - doc/manual-html/chapter-7.html
87
+ - doc/manual-html/index.html
88
+ - doc/manual-html/stylesheets
89
+ - doc/manual-html/stylesheets/manual.css
90
+ - doc/manual-html/stylesheets/ruby.css
91
+ - lib/net
92
+ - lib/net/ssh
93
+ - lib/net/ssh.rb
94
+ - lib/net/ssh/connection
95
+ - lib/net/ssh/errors.rb
96
+ - lib/net/ssh/proxy
97
+ - lib/net/ssh/service
98
+ - lib/net/ssh/session.rb
99
+ - lib/net/ssh/transport
100
+ - lib/net/ssh/userauth
101
+ - lib/net/ssh/util
102
+ - lib/net/ssh/version.rb
103
+ - lib/net/ssh/connection/channel.rb
104
+ - lib/net/ssh/connection/constants.rb
105
+ - lib/net/ssh/connection/driver.rb
106
+ - lib/net/ssh/connection/services.rb
107
+ - lib/net/ssh/connection/term.rb
108
+ - lib/net/ssh/proxy/errors.rb
109
+ - lib/net/ssh/proxy/http.rb
110
+ - lib/net/ssh/proxy/socks4.rb
111
+ - lib/net/ssh/proxy/socks5.rb
112
+ - lib/net/ssh/service/forward
113
+ - lib/net/ssh/service/process
114
+ - lib/net/ssh/service/services.rb
115
+ - lib/net/ssh/service/shell
116
+ - lib/net/ssh/service/forward/driver.rb
117
+ - lib/net/ssh/service/forward/local-network-handler.rb
118
+ - lib/net/ssh/service/forward/remote-network-handler.rb
119
+ - lib/net/ssh/service/forward/services.rb
120
+ - lib/net/ssh/service/process/driver.rb
121
+ - lib/net/ssh/service/process/open.rb
122
+ - lib/net/ssh/service/process/popen3.rb
123
+ - lib/net/ssh/service/process/services.rb
124
+ - lib/net/ssh/service/shell/driver.rb
125
+ - lib/net/ssh/service/shell/services.rb
126
+ - lib/net/ssh/service/shell/shell.rb
127
+ - lib/net/ssh/service/shell/sync.rb
128
+ - lib/net/ssh/transport/algorithm-negotiator.rb
129
+ - lib/net/ssh/transport/compress
130
+ - lib/net/ssh/transport/constants.rb
131
+ - lib/net/ssh/transport/errors.rb
132
+ - lib/net/ssh/transport/identity-cipher.rb
133
+ - lib/net/ssh/transport/kex
134
+ - lib/net/ssh/transport/ossl
135
+ - lib/net/ssh/transport/packet-stream.rb
136
+ - lib/net/ssh/transport/services.rb
137
+ - lib/net/ssh/transport/session.rb
138
+ - lib/net/ssh/transport/version-negotiator.rb
139
+ - lib/net/ssh/transport/compress/compressor.rb
140
+ - lib/net/ssh/transport/compress/decompressor.rb
141
+ - lib/net/ssh/transport/compress/none-compressor.rb
142
+ - lib/net/ssh/transport/compress/none-decompressor.rb
143
+ - lib/net/ssh/transport/compress/services.rb
144
+ - lib/net/ssh/transport/compress/zlib-compressor.rb
145
+ - lib/net/ssh/transport/compress/zlib-decompressor.rb
146
+ - lib/net/ssh/transport/kex/dh-gex.rb
147
+ - lib/net/ssh/transport/kex/dh.rb
148
+ - lib/net/ssh/transport/kex/services.rb
149
+ - lib/net/ssh/transport/ossl/buffer-factory.rb
150
+ - lib/net/ssh/transport/ossl/buffer.rb
151
+ - lib/net/ssh/transport/ossl/cipher-factory.rb
152
+ - lib/net/ssh/transport/ossl/digest-factory.rb
153
+ - lib/net/ssh/transport/ossl/hmac
154
+ - lib/net/ssh/transport/ossl/hmac-factory.rb
155
+ - lib/net/ssh/transport/ossl/key-factory.rb
156
+ - lib/net/ssh/transport/ossl/services.rb
157
+ - lib/net/ssh/transport/ossl/hmac/hmac.rb
158
+ - lib/net/ssh/transport/ossl/hmac/md5-96.rb
159
+ - lib/net/ssh/transport/ossl/hmac/md5.rb
160
+ - lib/net/ssh/transport/ossl/hmac/none.rb
161
+ - lib/net/ssh/transport/ossl/hmac/services.rb
162
+ - lib/net/ssh/transport/ossl/hmac/sha1-96.rb
163
+ - lib/net/ssh/transport/ossl/hmac/sha1.rb
164
+ - lib/net/ssh/userauth/agent.rb
165
+ - lib/net/ssh/userauth/constants.rb
166
+ - lib/net/ssh/userauth/driver.rb
167
+ - lib/net/ssh/userauth/methods
168
+ - lib/net/ssh/userauth/pageant.rb
169
+ - lib/net/ssh/userauth/services.rb
170
+ - lib/net/ssh/userauth/userkeys.rb
171
+ - lib/net/ssh/userauth/methods/hostbased.rb
172
+ - lib/net/ssh/userauth/methods/keyboard-interactive.rb
173
+ - lib/net/ssh/userauth/methods/password.rb
174
+ - lib/net/ssh/userauth/methods/publickey.rb
175
+ - lib/net/ssh/userauth/methods/services.rb
176
+ - lib/net/ssh/util/buffer.rb
177
+ - lib/net/ssh/util/openssl.rb
178
+ - lib/net/ssh/util/prompter.rb
179
+ - examples/channel-demo.rb
180
+ - examples/port-forward.rb
181
+ - examples/process-demo.rb
182
+ - examples/remote-net-port-forward.rb
183
+ - examples/remote-port-forward.rb
184
+ - examples/shell-demo.rb
185
+ - examples/ssh-client.rb
186
+ - examples/sync-shell-demo.rb
187
+ - examples/tail-demo.rb
188
+ - test/ALL-TESTS.rb
189
+ - test/connection
190
+ - test/proxy
191
+ - test/service
192
+ - test/tc_integration.rb
193
+ - test/transport
194
+ - test/userauth
195
+ - test/util
196
+ - test/connection/tc_channel.rb
197
+ - test/connection/tc_driver.rb
198
+ - test/connection/tc_integration.rb
199
+ - test/proxy/tc_http.rb
200
+ - test/proxy/tc_socks4.rb
201
+ - test/proxy/tc_socks5.rb
202
+ - test/service/forward
203
+ - test/service/process
204
+ - test/service/forward/tc_driver.rb
205
+ - test/service/forward/tc_local_network_handler.rb
206
+ - test/service/forward/tc_remote_network_handler.rb
207
+ - test/service/process/tc_driver.rb
208
+ - test/service/process/tc_integration.rb
209
+ - test/service/process/tc_open.rb
210
+ - test/service/process/tc_popen3.rb
211
+ - test/transport/compress
212
+ - test/transport/kex
213
+ - test/transport/ossl
214
+ - test/transport/tc_algorithm_negotiator.rb
215
+ - test/transport/tc_identity_cipher.rb
216
+ - test/transport/tc_integration.rb
217
+ - test/transport/tc_packet_stream.rb
218
+ - test/transport/tc_session.rb
219
+ - test/transport/tc_version_negotiator.rb
220
+ - test/transport/compress/tc_none_compress.rb
221
+ - test/transport/compress/tc_none_decompress.rb
222
+ - test/transport/compress/tc_zlib_compress.rb
223
+ - test/transport/compress/tc_zlib_decompress.rb
224
+ - test/transport/kex/tc_dh.rb
225
+ - test/transport/kex/tc_dh_gex.rb
226
+ - test/transport/ossl/fixtures
227
+ - test/transport/ossl/hmac
228
+ - test/transport/ossl/tc_buffer.rb
229
+ - test/transport/ossl/tc_buffer_factory.rb
230
+ - test/transport/ossl/tc_cipher_factory.rb
231
+ - test/transport/ossl/tc_digest_factory.rb
232
+ - test/transport/ossl/tc_hmac_factory.rb
233
+ - test/transport/ossl/tc_key_factory.rb
234
+ - test/transport/ossl/fixtures/dsa-encrypted
235
+ - test/transport/ossl/fixtures/dsa-encrypted-bad
236
+ - test/transport/ossl/fixtures/dsa-unencrypted
237
+ - test/transport/ossl/fixtures/dsa-unencrypted-bad
238
+ - test/transport/ossl/fixtures/dsa-unencrypted.pub
239
+ - test/transport/ossl/fixtures/not-a-private-key
240
+ - test/transport/ossl/fixtures/not-supported
241
+ - test/transport/ossl/fixtures/rsa-encrypted
242
+ - test/transport/ossl/fixtures/rsa-encrypted-bad
243
+ - test/transport/ossl/fixtures/rsa-unencrypted
244
+ - test/transport/ossl/fixtures/rsa-unencrypted-bad
245
+ - test/transport/ossl/fixtures/rsa-unencrypted.pub
246
+ - test/transport/ossl/hmac/tc_hmac.rb
247
+ - test/transport/ossl/hmac/tc_md5.rb
248
+ - test/transport/ossl/hmac/tc_md5_96.rb
249
+ - test/transport/ossl/hmac/tc_none.rb
250
+ - test/transport/ossl/hmac/tc_sha1.rb
251
+ - test/transport/ossl/hmac/tc_sha1_96.rb
252
+ - test/userauth/methods
253
+ - test/userauth/tc_agent.rb
254
+ - test/userauth/tc_driver.rb
255
+ - test/userauth/tc_integration.rb
256
+ - test/userauth/tc_userkeys.rb
257
+ - test/userauth/methods/tc_hostbased.rb
258
+ - test/userauth/methods/tc_password.rb
259
+ - test/userauth/methods/tc_publickey.rb
260
+ - test/util/tc_buffer.rb
260
261
  test_files:
261
- - test/ALL-TESTS.rb
262
+ - test/ALL-TESTS.rb
262
263
  rdoc_options: []
263
-
264
264
  extra_rdoc_files: []
265
-
266
265
  executables: []
267
-
268
266
  extensions: []
269
-
270
267
  requirements: []
271
-
272
268
  dependencies:
273
- - !ruby/object:Gem::Dependency
274
- name: needle
275
- version_requirement:
276
- version_requirements: !ruby/object:Gem::Version::Requirement
277
- requirements:
278
- - - ">="
279
- - !ruby/object:Gem::Version
280
- version: 1.2.0
281
- version:
269
+ - !ruby/object:Gem::Dependency
270
+ name: needle
271
+ version_requirement:
272
+ version_requirements: !ruby/object:Gem::Version::Requirement
273
+ requirements:
274
+ -
275
+ - ">="
276
+ - !ruby/object:Gem::Version
277
+ version: 1.2.0
278
+ version: