summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklós Fazekas <mfazekas@szemafor.com>2015-05-21 08:33:39 +0200
committerMiklós Fazekas <mfazekas@szemafor.com>2015-05-21 08:33:39 +0200
commita36be6ee49642aa9fa50bd8a803293a2fdab07a4 (patch)
treee2c8f127b0d381dd9622e0ff846b3ffec7ac01d6
parent61d2ac190dd53c3daf893be9e63aadb0189489ab (diff)
parent0b2d20b84fd86729f1d504d0230fc797b7dd5715 (diff)
downloadnet-ssh-a36be6ee49642aa9fa50bd8a803293a2fdab07a4.tar.gz
Merge pull request #246 from mfazekas/2_10_beta_releasev2.10.0.beta1
2.10.0.beta1 release prep
-rw-r--r--lib/net/ssh/version.rb4
-rw-r--r--net-ssh.gemspec14
-rw-r--r--test/start/test_options.rb2
3 files changed, 12 insertions, 8 deletions
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 908fb8a..261cd3a 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -48,10 +48,10 @@ module Net; module SSH
MAJOR = 2
# The minor component of this version of the Net::SSH library
- MINOR = 9
+ MINOR = 10
# The tiny component of this version of the Net::SSH library
- TINY = 3
+ TINY = 0
# The prerelease component of this version of the Net::SSH library
# nil allowed
diff --git a/net-ssh.gemspec b/net-ssh.gemspec
index d620428..ad426a2 100644
--- a/net-ssh.gemspec
+++ b/net-ssh.gemspec
@@ -2,17 +2,17 @@
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
-# stub: net-ssh 2.9.3.beta1 ruby lib
+# stub: net-ssh 2.10.0.beta1 ruby lib
Gem::Specification.new do |s|
s.name = "net-ssh"
- s.version = "2.9.3.beta1"
+ s.version = "2.10.0.beta1"
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Jamis Buck", "Delano Mandelbaum", "Mikl\u{f3}s Fazekas"]
s.cert_chain = ["net-ssh-public_cert.pem"]
- s.date = "2015-01-27"
+ s.date = "2015-05-21"
s.description = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol. It allows you to write programs that invoke and interact with processes on remote servers, via SSH2."
s.email = "net-ssh@solutious.com"
s.extra_rdoc_files = [
@@ -26,7 +26,6 @@ Gem::Specification.new do |s|
"Manifest",
"README.rdoc",
"Rakefile",
- "Rudyfile",
"THANKS.txt",
"lib/net/ssh.rb",
"lib/net/ssh/authentication/agent.rb",
@@ -140,6 +139,11 @@ Gem::Specification.new do |s|
"test/configs/wild_cards",
"test/connection/test_channel.rb",
"test/connection/test_session.rb",
+ "test/integration/README.txt",
+ "test/integration/Vagrantfile",
+ "test/integration/common.rb",
+ "test/integration/playbook.yml",
+ "test/integration/test_id_rsa_keys.rb",
"test/known_hosts/github",
"test/manual/test_forward.rb",
"test/manual/test_pageant.rb",
@@ -181,7 +185,7 @@ Gem::Specification.new do |s|
s.homepage = "https://github.com/net-ssh/net-ssh"
s.licenses = ["MIT"]
s.rubyforge_project = "net-ssh"
- s.rubygems_version = "2.2.2"
+ s.rubygems_version = "2.4.6"
s.signing_key = "/mnt/gem/net-ssh-private_key.pem"
s.summary = "Net::SSH: a pure-Ruby implementation of the SSH2 client protocol."
diff --git a/test/start/test_options.rb b/test/start/test_options.rb
index db4e706..5f18342 100644
--- a/test/start/test_options.rb
+++ b/test/start/test_options.rb
@@ -32,7 +32,7 @@ module NetSSH
end
end
- def test_star_should_accept_number_of_password_prompts_option
+ def test_start_should_accept_number_of_password_prompts_option
assert_nothing_raised do
options = { :number_of_password_prompts => 2 }
Net::SSH.start('localhost', 'testuser', options)