diff options
author | Miklos Fazekas <mfazekas@szemafor.com> | 2015-12-10 12:41:43 +0100 |
---|---|---|
committer | Miklos Fazekas <mfazekas@szemafor.com> | 2015-12-10 12:41:43 +0100 |
commit | e4b782e416fb2ccf2a8c81fb59f5f1a5f0b275a2 (patch) | |
tree | 637cc6966f24332d555cb5ea6d3d9e5d3a362c18 | |
parent | 12c62d517a8945e6b1187ab2c523bc07604d1ab0 (diff) | |
download | net-ssh-3.0.2.rc1.tar.gz |
Prepare for 3.0.2.rc1v3.0.2.rc1
-rw-r--r-- | lib/net/ssh/version.rb | 4 | ||||
-rw-r--r-- | net-ssh.gemspec | 15 |
2 files changed, 11 insertions, 8 deletions
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb index be871b2..0a2c7b3 100644 --- a/lib/net/ssh/version.rb +++ b/lib/net/ssh/version.rb @@ -51,11 +51,11 @@ module Net; module SSH MINOR = 0 # The tiny component of this version of the Net::SSH library - TINY = 1 + TINY = 2 # The prerelease component of this version of the Net::SSH library # nil allowed - PRE = nil + PRE = "rc1" # The current version of the Net::SSH library as a Version instance CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact) diff --git a/net-ssh.gemspec b/net-ssh.gemspec index 8bdcc0f..490f1c6 100644 --- a/net-ssh.gemspec +++ b/net-ssh.gemspec @@ -2,15 +2,17 @@ # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' # -*- encoding: utf-8 -*- +# stub: net-ssh 3.0.2.rc1 ruby lib Gem::Specification.new do |s| s.name = "net-ssh" - s.version = "3.0.1" + s.version = "3.0.2.rc1" - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= + 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-12-06" + s.date = "2015-12-10" 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 = [ @@ -144,12 +146,14 @@ Gem::Specification.new do |s| "test/integration/playbook.yml", "test/integration/test_forward.rb", "test/integration/test_id_rsa_keys.rb", + "test/integration/test_proxy.rb", "test/known_hosts/github", "test/known_hosts/github_hash", "test/manual/test_pageant.rb", "test/start/test_connection.rb", "test/start/test_options.rb", "test/start/test_transport.rb", + "test/start/test_user_nil.rb", "test/test_all.rb", "test/test_buffer.rb", "test/test_buffered_io.rb", @@ -184,15 +188,14 @@ Gem::Specification.new do |s| ] s.homepage = "https://github.com/net-ssh/net-ssh" s.licenses = ["MIT"] - s.require_paths = ["lib"] s.required_ruby_version = Gem::Requirement.new(">= 2.0") s.rubyforge_project = "net-ssh" - s.rubygems_version = "1.8.23.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." if s.respond_to? :specification_version then - s.specification_version = 3 + s.specification_version = 4 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_development_dependency(%q<test-unit>, [">= 0"]) |