net-ssh 2.0.16 → 2.0.17
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/CHANGELOG.rdoc +5 -1
- data/lib/net/ssh/authentication/agent.rb +4 -1
- data/lib/net/ssh/version.rb +1 -1
- data/net-ssh.gemspec +1 -1
- metadata +2 -2
data/CHANGELOG.rdoc
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
|
|
2
|
+
=== 2.0.17 / 14 Dec 2009
|
|
3
|
+
|
|
4
|
+
* Don't load net/ssh/authentication/pageant on Windows with Ruby 1.9 [Travis Reeder, Delano Mandelbaum]
|
|
5
|
+
|
|
6
|
+
|
|
2
7
|
=== 2.0.16 / 28 Nov 2009
|
|
3
8
|
|
|
4
9
|
* Fix for "multiple hosts are separated by whitespace" [Akinori MUSHA]
|
|
5
10
|
* Add support for the ProxyCommand directive [Akinori MUSHA]
|
|
6
|
-
* Do not put a command line twice in error messages [Akinori MUSHA]
|
|
7
11
|
* Switched from #recv(1) to #readchar in lib/net/ssh/transport/server_version.rb, so that closed sockets are recognized [Alex Peuchert]
|
|
8
12
|
|
|
9
13
|
|
|
@@ -3,7 +3,10 @@ require 'net/ssh/errors'
|
|
|
3
3
|
require 'net/ssh/loggable'
|
|
4
4
|
require 'net/ssh/transport/server_version'
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
# Only load pageant on Windows, Ruby 1.8.x
|
|
7
|
+
if File::ALT_SEPARATOR && !(RUBY_PLATFORM =~ /java/) && RUBY_VERSION < "1.9"
|
|
8
|
+
require 'net/ssh/authentication/pageant'
|
|
9
|
+
end
|
|
7
10
|
|
|
8
11
|
module Net; module SSH; module Authentication
|
|
9
12
|
|
data/lib/net/ssh/version.rb
CHANGED
data/net-ssh.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@spec = Gem::Specification.new do |s|
|
|
2
2
|
s.name = "net-ssh"
|
|
3
3
|
s.rubyforge_project = 'net-ssh'
|
|
4
|
-
s.version = "2.0.
|
|
4
|
+
s.version = "2.0.17"
|
|
5
5
|
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
|
|
6
6
|
s.description = s.summary
|
|
7
7
|
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: net-ssh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.17
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jamis Buck
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2009-
|
|
13
|
+
date: 2009-12-14 00:00:00 -05:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies: []
|
|
16
16
|
|