open4ssh 0.2.0 → 0.2.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ccf88f70ce6864212bb272081720505b596accb1
4
- data.tar.gz: 2316152b8b85d3457e36f23c9ea7c2ad5b31cab6
3
+ metadata.gz: 7bb2d1e76470d560b43dc4726ab7f17d07850604
4
+ data.tar.gz: 17e5c0f00075ab9994ee94cf5fef49485eb1b260
5
5
  SHA512:
6
- metadata.gz: f2adc8f816a6ddc7823b9d097ee58cc943ddaa62d150a01cbf82842d16ba4424f089f7b6f26802c7760f54bf15a7cea115e4840b1df081e175c6b17f08297973
7
- data.tar.gz: 33742e1cf386283107c3e1132904f75aa8a7dfb278c5422e7d443846811b012cc4baae0c940665ff013d16831d21e929a4222dddbfe62df6e0f263395ca2d570
6
+ metadata.gz: 8a17e797ddde997a72b9f78115436bfa1dd079647c5066009dade2b6044951d9f757a986a62381e779af8c7ffc5c943560feb9054551d676019442da0f91ba30
7
+ data.tar.gz: b2e234614538dd5338ba968945d94f277a9b78c71b348e6a261469bce375a1491f37e7d2fbf40668487a5333baa4058becf31b15a64abd14b525d5793a8d71b2
@@ -1,7 +1,6 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - 2.2.0
5
4
  - 2.3.0
6
5
 
7
6
  sudo: required
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## Version 0.2.1
4
+
5
+ - Turned off paranoid ssh key verification.
6
+
3
7
  ## Version 0.2.0
4
8
 
5
9
  - Improved unit test coverage.
@@ -52,7 +52,7 @@ module Open4ssh
52
52
  stdout = ""
53
53
  keys = [key]
54
54
 
55
- Net::SSH.start(host, user, port: port, password: pwd, keys: keys) do |ssh|
55
+ Net::SSH.start(host, user, port: port, password: pwd, keys: keys, paranoid: false) do |ssh|
56
56
  stdout = ssh.exec!(cmd)
57
57
  end
58
58
 
@@ -119,7 +119,7 @@ module Open4ssh
119
119
  keys = [key]
120
120
  results = []
121
121
 
122
- Net::SSH.start(host, user, port: port, password: pwd, keys: keys) do |ssh|
122
+ Net::SSH.start(host, user, port: port, password: pwd, keys: keys, paranoid: false) do |ssh|
123
123
  # Execute command by command
124
124
  for command in cmd
125
125
  stdout = ""
@@ -2,5 +2,5 @@ module Open4ssh
2
2
 
3
3
  # Version of Open4ssh according to {http://semver.org semantic versioning}
4
4
  #
5
- VERSION = "0.2.0"
5
+ VERSION = "0.2.1"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: open4ssh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nane Kratzke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-05 00:00:00.000000000 Z
11
+ date: 2016-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler