oxidized 0.26.1 → 0.26.2

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
  SHA256:
3
- metadata.gz: e51e07b48b02188aa66a3efe0df5a8fcf4e40ba161e84312856ca3b90778415f
4
- data.tar.gz: 3f8c34bd7090a737ae4130508e352f01880532f9bc237e2d5bacb4431d7b9b5f
3
+ metadata.gz: 88ba16bc352e1c3b144a870c2c16054d3000aba43990cfd7a4bdbbad4c8d4882
4
+ data.tar.gz: d7f213a82a1a775ab4443b43120dc006bb327c67d5de70436e2a103206e142af
5
5
  SHA512:
6
- metadata.gz: 51ee4fb565ff64ec16b974600f8b7805e5bb7442021674c932b1edcf3d2d3b18bc9d4604d7343b45fbe415ce0736a2bce3ff17a1316bf390673a5f2ac6c9a61d
7
- data.tar.gz: a39afa6447e8ceb7b03dcaeaee1cdd832a400610623c4d738d1a496a0970031027cc6e9e4a21a64f7b9a83ee0b5fd6312e3178a3934ddf023d09493cc2ed8547
6
+ metadata.gz: f2653389358fe2baca2825bf1bbc7180497716fac6a52ace6a039146541be735882d157b847001d10fd42f9afac3912f4d2abd982bdc655ce90087a1aec8e766
7
+ data.tar.gz: b8850e889bcb37e3812545eea75e75a276cba3d63ada0f3cc0afee3d3e636fcc6219d8c15c155bc5e7093d4f35e2fe752cd195925da9d1d8daabac4be777cf93
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2019-03-03 11:36:35 +0200 using RuboCop version 0.65.0.
3
+ # on 2019-03-05 07:37:06 +0100 using RuboCop version 0.65.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
@@ -23,9 +23,9 @@ Metrics/ClassLength:
23
23
 
24
24
  # Offense count: 11
25
25
  Metrics/CyclomaticComplexity:
26
- Max: 13
26
+ Max: 14
27
27
 
28
- # Offense count: 59
28
+ # Offense count: 60
29
29
  # Configuration parameters: CountComments, ExcludedMethods.
30
30
  Metrics/MethodLength:
31
31
  Max: 41
@@ -37,7 +37,7 @@ Metrics/ParameterLists:
37
37
 
38
38
  # Offense count: 10
39
39
  Metrics/PerceivedComplexity:
40
- Max: 13
40
+ Max: 14
41
41
 
42
42
  # Offense count: 1
43
43
  Naming/AccessorMethodName:
@@ -2,7 +2,12 @@
2
2
 
3
3
  ## Master
4
4
 
5
+ ## 0.26.2
6
+
7
+ * FIX: suppress net-ssh 5 deprecation warnings by moving from :paranoid to :verify_host_key
8
+
5
9
  ## 0.26.1
10
+
6
11
  * FIX: force file permissions in rubygems
7
12
 
8
13
  ## 0.26.0
data/README.md CHANGED
@@ -104,7 +104,7 @@ Install Ruby 2.3 from [SCL](https://www.softwarecollections.org/en/scls/rhscl/rh
104
104
 
105
105
  ```shell
106
106
  yum install centos-release-scl
107
- yum install rh-ruby23
107
+ yum install rh-ruby23 rh-ruby23-devel
108
108
  scl enable rh-ruby23 bash
109
109
  ```
110
110
 
@@ -124,7 +124,7 @@ module Oxidized
124
124
  ssh_opts = {
125
125
  number_of_password_prompts: 0,
126
126
  keepalive: vars(:ssh_no_keepalive) ? false : true,
127
- paranoid: secure,
127
+ verify_host_key: secure ? :always : :never,
128
128
  password: @node.auth[:password],
129
129
  timeout: Oxidized.config.timeout,
130
130
  port: (vars(:ssh_port) || 22).to_i
@@ -1,6 +1,6 @@
1
1
  module Oxidized
2
- VERSION = '0.26.1'.freeze
3
- VERSION_FULL = '0.26.1'.freeze
2
+ VERSION = '0.26.2'.freeze
3
+ VERSION_FULL = '0.26.2'.freeze
4
4
  def self.version_set
5
5
  version_full = %x(git describe --tags).chop rescue ""
6
6
  version = %x(git describe --tags --abbrev=0).chop rescue ""
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oxidized
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.1
4
+ version: 0.26.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Saku Ytti
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-03-04 00:00:00.000000000 Z
13
+ date: 2019-03-05 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: asetus