summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordelano <delano.mandelbaum@gmail.com>2013-02-06 07:55:43 -0800
committerdelano <delano.mandelbaum@gmail.com>2013-02-06 07:55:43 -0800
commit01c70995c2331cf820f1e0c03b57bed1910cff79 (patch)
tree581c648450025f70cf86f98961edd2991beb1ed3
parent31ddfc7fd018f908c8e2d6ba35997de7ac72e14a (diff)
downloadnet-ssh-gateway-01c70995c2331cf820f1e0c03b57bed1910cff79.tar.gz
Version bumpv1.1.1
-rw-r--r--lib/net/ssh/gateway.rb10
-rw-r--r--net-ssh-gateway.gemspec4
2 files changed, 8 insertions, 6 deletions
diff --git a/lib/net/ssh/gateway.rb b/lib/net/ssh/gateway.rb
index 0757d18..3c7fd1e 100644
--- a/lib/net/ssh/gateway.rb
+++ b/lib/net/ssh/gateway.rb
@@ -32,7 +32,7 @@ require 'net/ssh/version'
# Port numbers are allocated automatically, beginning at MAX_PORT and
# decrementing on each request for a new port until MIN_PORT is reached. If
# a port is already in use, this is detected and a different port will be
-# assigned.
+# assigned.
class Net::SSH::Gateway
# A trivial class for representing the version of this library.
class Version < Net::SSH::Version
@@ -43,7 +43,7 @@ class Net::SSH::Gateway
MINOR = 1
# The tiny component of the library's version
- TINY = 0
+ TINY = 1
# The library's version as a Version instance
CURRENT = new(MAJOR, MINOR, TINY)
@@ -65,8 +65,8 @@ class Net::SSH::Gateway
# are passed as given to that method to start up the gateway connection.
#
# gateway = Net::SSH::Gateway.new('host', 'user', :password => "password")
- #
- # As of 1.1 there is an additional option to specify the wait time for
+ #
+ # As of 1.1 there is an additional option to specify the wait time for
# the gateway thread. The default is 0.001 seconds and can be changed
# with the :loop_wait option.
#
@@ -98,7 +98,7 @@ class Net::SSH::Gateway
end
@active = false
-
+
@thread.join
@session.close
end
diff --git a/net-ssh-gateway.gemspec b/net-ssh-gateway.gemspec
index c26676a..54f98fe 100644
--- a/net-ssh-gateway.gemspec
+++ b/net-ssh-gateway.gemspec
@@ -5,7 +5,7 @@
Gem::Specification.new do |s|
s.name = "net-ssh-gateway"
- s.version = "1.1.0"
+ s.version = "1.1.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jamis Buck", "Delano Mandelbaum"]
@@ -23,7 +23,9 @@ Gem::Specification.new do |s|
"Manifest",
"README.rdoc",
"Rakefile",
+ "gem-public_cert.pem",
"lib/net/ssh/gateway.rb",
+ "net-ssh-gateway.gemspec",
"setup.rb",
"test/gateway_test.rb"
]