net-ssh 2.10.1.rc2 → 3.0.0.rc1
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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/CHANGES.txt +8 -0
- data/lib/net/ssh/version.rb +4 -4
- data/net-ssh.gemspec +3 -3
- data/test/integration/playbook.yml +2 -0
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35b946a2c8c50c7f415772cd795bfb22b32a580a
|
|
4
|
+
data.tar.gz: 88229af4861f293ed5e20209f60cc65d879cb2d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73111c96b59044bc841bcd2e16adaaabb6b0778a25754ddf461eec4bcd3fd26bc57ed3ed19bcf29f6978cb88022eaf9098774891a60f2c5f2234d20372ddf0d5
|
|
7
|
+
data.tar.gz: 4f62ed4e65be39045f14f8f53608e03f977a674deeb13bcf2ce5a0fe81777dfe90f1f5d31d6b62eb22af38cf06d977708dc0d03ef38232915ac4a0514333de82
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/CHANGES.txt
CHANGED
data/lib/net/ssh/version.rb
CHANGED
|
@@ -45,17 +45,17 @@ module Net; module SSH
|
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
# The major component of this version of the Net::SSH library
|
|
48
|
-
MAJOR =
|
|
48
|
+
MAJOR = 3
|
|
49
49
|
|
|
50
50
|
# The minor component of this version of the Net::SSH library
|
|
51
|
-
MINOR =
|
|
51
|
+
MINOR = 0
|
|
52
52
|
|
|
53
53
|
# The tiny component of this version of the Net::SSH library
|
|
54
|
-
TINY =
|
|
54
|
+
TINY = 0
|
|
55
55
|
|
|
56
56
|
# The prerelease component of this version of the Net::SSH library
|
|
57
57
|
# nil allowed
|
|
58
|
-
PRE = '
|
|
58
|
+
PRE = 'rc1'
|
|
59
59
|
|
|
60
60
|
# The current version of the Net::SSH library as a Version instance
|
|
61
61
|
CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)
|
data/net-ssh.gemspec
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: net-ssh
|
|
5
|
+
# stub: net-ssh 3.0.0.rc1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "net-ssh"
|
|
9
|
-
s.version = "
|
|
9
|
+
s.version = "3.0.0.rc1"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Jamis Buck", "Delano Mandelbaum", "Mikl\u{f3}s Fazekas"]
|
|
14
14
|
s.cert_chain = ["net-ssh-public_cert.pem"]
|
|
15
|
-
s.date = "2015-09-
|
|
15
|
+
s.date = "2015-09-14"
|
|
16
16
|
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."
|
|
17
17
|
s.email = "net-ssh@solutious.com"
|
|
18
18
|
s.extra_rdoc_files = [
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
tags: ruby, sudo: True,
|
|
17
17
|
rvm1_rubies: ["ruby-{{ruby_version}}"],
|
|
18
18
|
rvm1_install_path: "{{rvm1_install_path}}",
|
|
19
|
+
rvm1_gpg_key_server: pool.sks-keyservers.net,
|
|
19
20
|
when: "'{{current_ruby_version.stdout|default()}}' != '{{ruby_version}}'" }
|
|
20
21
|
tasks:
|
|
21
22
|
- user: name=net_ssh_1 password="{{foopwd}}" group=vagrant state=present
|
|
@@ -40,6 +41,7 @@
|
|
|
40
41
|
- mocha
|
|
41
42
|
- rbnacl
|
|
42
43
|
- rbnacl-libsodium
|
|
44
|
+
- copy: content='echo "cd /net-ssh ; rake integration-test"' dest=/etc/update-motd.d/99-net-ssh-tests mode=0755
|
|
43
45
|
handlers:
|
|
44
46
|
- name: restart sshd
|
|
45
47
|
service: name=ssh state=restarted
|
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:
|
|
4
|
+
version: 3.0.0.rc1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jamis Buck
|
|
@@ -31,7 +31,7 @@ cert_chain:
|
|
|
31
31
|
MbvRpzgROzyfw1qYi4dnIyMwTtXFFcZ0a2jpxHPkcTYFK6TzvFgDLAP0Y/u9jqUQ
|
|
32
32
|
eZ7/3CdSi/isZHEw
|
|
33
33
|
-----END CERTIFICATE-----
|
|
34
|
-
date: 2015-09-
|
|
34
|
+
date: 2015-09-14 00:00:00.000000000 Z
|
|
35
35
|
dependencies:
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
37
|
name: test-unit
|
metadata.gz.sig
CHANGED
|
Binary file
|