net-ssh 2.0.19 → 2.0.20
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 +4 -1
- data/README.rdoc +1 -1
- data/Rudyfile +0 -14
- data/lib/net/ssh/config.rb +5 -3
- data/lib/net/ssh/version.rb +1 -1
- data/net-ssh.gemspec +3 -3
- metadata +3 -4
data/CHANGELOG.rdoc
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
|
|
2
|
+
=== 2.0.20 / 10 Feb 2010
|
|
3
|
+
|
|
4
|
+
* Support "ProxyCommand none" directive [Andy Lo-A-Foe]
|
|
5
|
+
|
|
2
6
|
=== 2.0.19 / 16 Jan 2010
|
|
3
7
|
|
|
4
8
|
* Support plus sign in sshconfig hostname [Jason Weathered]
|
|
5
9
|
|
|
6
|
-
|
|
7
10
|
=== 2.0.18 / 15 Jan 2010
|
|
8
11
|
|
|
9
12
|
* Fix related to #recv(1) to #readpartial change in 2.0.16 [Hans de Graaff, Delano Mandelbaum]
|
data/README.rdoc
CHANGED
data/Rudyfile
CHANGED
|
@@ -51,20 +51,6 @@ routines do
|
|
|
51
51
|
|
|
52
52
|
after :install_rubyforge, :install_github
|
|
53
53
|
end
|
|
54
|
-
|
|
55
|
-
install_rubyforge do
|
|
56
|
-
remote :root do
|
|
57
|
-
gem_install 'net-ssh', '--version', '2.0.7'
|
|
58
|
-
gem_install 'net-ssh'
|
|
59
|
-
end
|
|
60
|
-
end
|
|
61
|
-
|
|
62
|
-
install_github do
|
|
63
|
-
remote :root do
|
|
64
|
-
gem_sources :a, "http://gems.github.com"
|
|
65
|
-
gem_install 'net-ssh-net-ssh'
|
|
66
|
-
end
|
|
67
|
-
end
|
|
68
54
|
|
|
69
55
|
install_gem do
|
|
70
56
|
before :package_gem
|
data/lib/net/ssh/config.rb
CHANGED
|
@@ -145,9 +145,11 @@ module Net; module SSH
|
|
|
145
145
|
when 'preferredauthentications'
|
|
146
146
|
hash[:auth_methods] = value.split(/,/)
|
|
147
147
|
when 'proxycommand'
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
148
|
+
if value and !(value =~ /^none$/)
|
|
149
|
+
require 'net/ssh/proxy/command'
|
|
150
|
+
hash[:proxy] = Net::SSH::Proxy::Command.new(value)
|
|
151
|
+
end
|
|
152
|
+
when 'pubkeyauthentication'
|
|
151
153
|
if value
|
|
152
154
|
hash[:auth_methods] ||= []
|
|
153
155
|
hash[:auth_methods] << "publickey"
|
data/lib/net/ssh/version.rb
CHANGED
data/net-ssh.gemspec
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
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.20"
|
|
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"]
|
|
8
|
-
s.email = ["net-ssh@solutious.com"
|
|
9
|
-
s.homepage = "http://
|
|
8
|
+
s.email = ["net-ssh@solutious.com"]
|
|
9
|
+
s.homepage = "http://github.com/net-ssh/net-ssh"
|
|
10
10
|
|
|
11
11
|
s.extra_rdoc_files = %w[README.rdoc THANKS.rdoc CHANGELOG.rdoc]
|
|
12
12
|
s.has_rdoc = true
|
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.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jamis Buck
|
|
@@ -10,14 +10,13 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2010-
|
|
13
|
+
date: 2010-02-10 00:00:00 -05:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies: []
|
|
16
16
|
|
|
17
17
|
description: "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
|
|
18
18
|
email:
|
|
19
19
|
- net-ssh@solutious.com
|
|
20
|
-
- net-ssh@solutious.com
|
|
21
20
|
executables: []
|
|
22
21
|
|
|
23
22
|
extensions: []
|
|
@@ -138,7 +137,7 @@ files:
|
|
|
138
137
|
- test/transport/test_session.rb
|
|
139
138
|
- test/transport/test_state.rb
|
|
140
139
|
has_rdoc: true
|
|
141
|
-
homepage: http://
|
|
140
|
+
homepage: http://github.com/net-ssh/net-ssh
|
|
142
141
|
licenses: []
|
|
143
142
|
|
|
144
143
|
post_install_message:
|