net-ssh 2.10.1.rc2 → 3.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 53314dd4042109ef57afae20cee929c52ea44ec5
4
- data.tar.gz: 594fec12a5d588ec79e2a9e35802c7e411767960
3
+ metadata.gz: 35b946a2c8c50c7f415772cd795bfb22b32a580a
4
+ data.tar.gz: 88229af4861f293ed5e20209f60cc65d879cb2d6
5
5
  SHA512:
6
- metadata.gz: da0ffcbf7aac40e8ffcfe4356c48b82df5ed60e360cd09f4d2f1c99e513ba8e7e23ce40428a7f6a367c3ea4810b893c75e916bb2e93e811f25c1584f50ef8ca6
7
- data.tar.gz: c7eab4d6ee7ad0e6553480afafd0c932e15c4ab35581258a26c6e90fcd00324f49ae95c2506232386cfba09a463ea737ddafd926daca2180f11fcd4f7e11f20b
6
+ metadata.gz: 73111c96b59044bc841bcd2e16adaaabb6b0778a25754ddf461eec4bcd3fd26bc57ed3ed19bcf29f6978cb88022eaf9098774891a60f2c5f2234d20372ddf0d5
7
+ data.tar.gz: 4f62ed4e65be39045f14f8f53608e03f977a674deeb13bcf2ce5a0fe81777dfe90f1f5d31d6b62eb22af38cf06d977708dc0d03ef38232915ac4a0514333de82
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,3 +1,11 @@
1
+ === 3.0.0.rc1
2
+
3
+ * SemVer: Major version change because of dropping of ruby 1.9
4
+
5
+ === 2.10.1.rc2
6
+
7
+ * Win: Use fiddle on ruby 2.1 too [Charlie Savage]
8
+
1
9
  === 2.10.1.rc1
2
10
 
3
11
  * Added ruby 2.0 requirement to gemspec [Alex Schultz]
@@ -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 = 2
48
+ MAJOR = 3
49
49
 
50
50
  # The minor component of this version of the Net::SSH library
51
- MINOR = 10
51
+ MINOR = 0
52
52
 
53
53
  # The tiny component of this version of the Net::SSH library
54
- TINY = 1
54
+ TINY = 0
55
55
 
56
56
  # The prerelease component of this version of the Net::SSH library
57
57
  # nil allowed
58
- PRE = 'rc2'
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)
@@ -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 2.10.1.rc2 ruby lib
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 = "2.10.1.rc2"
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-08"
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: 2.10.1.rc2
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-08 00:00:00.000000000 Z
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