summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano@solutious.com>2010-02-10 15:18:15 -0500
committerdelano <delano@solutious.com>2010-02-10 15:20:53 -0500
commit47826b6f0cbd423c03d0e27fe2858e01305d3528 (patch)
tree31761c8ff3e173e571c10b46a4f7d5c9a9ceb1f0
parent851ead5abeaeaa424e05a4e785624a95061dffaf (diff)
downloadnet-ssh-47826b6f0cbd423c03d0e27fe2858e01305d3528.tar.gz
Release 2.0.20 (Support "ProxyCommand none" directive)
-rw-r--r--CHANGELOG.rdoc5
-rw-r--r--README.rdoc2
-rw-r--r--Rudyfile14
-rw-r--r--lib/net/ssh/version.rb2
-rw-r--r--net-ssh.gemspec6
5 files changed, 9 insertions, 20 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index 35718be..f2210c7 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,9 +1,12 @@
+=== 2.0.20 / 10 Feb 2010
+
+* Support "ProxyCommand none" directive [Andy Lo-A-Foe]
+
=== 2.0.19 / 16 Jan 2010
* Support plus sign in sshconfig hostname [Jason Weathered]
-
=== 2.0.18 / 15 Jan 2010
* Fix related to #recv(1) to #readpartial change in 2.0.16 [Hans de Graaff, Delano Mandelbaum]
diff --git a/README.rdoc b/README.rdoc
index ff49d78..bb78575 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -1,6 +1,6 @@
= Net::SSH
-* http://net-ssh.rubyforge.org/ssh
+* http://net-ssh.github.com/net-ssh
== DESCRIPTION:
diff --git a/Rudyfile b/Rudyfile
index 2028574..619e453 100644
--- a/Rudyfile
+++ b/Rudyfile
@@ -51,20 +51,6 @@ routines do
after :install_rubyforge, :install_github
end
-
- install_rubyforge do
- remote :root do
- gem_install 'net-ssh', '--version', '2.0.7'
- gem_install 'net-ssh'
- end
- end
-
- install_github do
- remote :root do
- gem_sources :a, "http://gems.github.com"
- gem_install 'net-ssh-net-ssh'
- end
- end
install_gem do
before :package_gem
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 105babf..992d7c4 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -51,7 +51,7 @@ module Net; module SSH
MINOR = 0
# The tiny component of this version of the Net::SSH library
- TINY = 19
+ TINY = 20
# The current version of the Net::SSH library as a Version instance
CURRENT = new(MAJOR, MINOR, TINY)
diff --git a/net-ssh.gemspec b/net-ssh.gemspec
index be5cbfd..e30f5a2 100644
--- a/net-ssh.gemspec
+++ b/net-ssh.gemspec
@@ -1,12 +1,12 @@
@spec = Gem::Specification.new do |s|
s.name = "net-ssh"
s.rubyforge_project = 'net-ssh'
- s.version = "2.0.19"
+ s.version = "2.0.20"
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
s.description = s.summary
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
- s.email = ["net-ssh@solutious.com", "net-ssh@solutious.com"]
- s.homepage = "http://gemcutter.org/gems/net-ssh"
+ s.email = ["net-ssh@solutious.com"]
+ s.homepage = "http://github.com/net-ssh/net-ssh"
s.extra_rdoc_files = %w[README.rdoc THANKS.rdoc CHANGELOG.rdoc]
s.has_rdoc = true