knife-inspect 0.11.0 → 0.11.1

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: c914c55c5bab76001d767fb579b224e41b440476
4
- data.tar.gz: 837f0149b53a1c26a4966eace58a4be204e65992
3
+ metadata.gz: a7ff3f8761b1d71f8cc404ac6873e54cde97c10f
4
+ data.tar.gz: 50881653c57fbaa235c1d3708ed8e5dc0f5cb3e2
5
5
  SHA512:
6
- metadata.gz: 60e89b16ba9c72e8ebd04415fc6f7f582af5c7d939bfb6cec4a22ab1fe79d4b7b9cdcb90389403a8b69d6e3fb75aca0d82c9d0fd968011c5271b08840dbd0304
7
- data.tar.gz: 0cd0462d49ac645f86f5c51c481779e6404f4a0de981b51fb54b884828f1a036a18b40ad0c93dee51bc38170c3c450f710906449b3d8d294f0b27fb84f4d49bf
6
+ metadata.gz: 3f854195811257f7ea73e764110d180cd3721ce64a8647dd5dd35d6ed39aa57056bf18d2ba1f465a0de7bc0490b08657b69e01635fd011e2cd1b1a88ffaff962
7
+ data.tar.gz: 4843dbc6b3d07c000999d854f1bec3695639a134d6f196db239ac864895160fb95d5bc04e274e790d3cd0b65be2083415a92d1a1f34c7e5bc93bfc8deff0ddcf
data/.travis.yml CHANGED
@@ -1,11 +1,13 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 1.9.3
4
3
  - 2.1
4
+ - 2.2
5
5
  env:
6
- - CHEF_VERSION=10.32.2
7
- - CHEF_VERSION=11.14.2
6
+ - CHEF_VERSION=10.34.6
7
+ - CHEF_VERSION=11.16.4
8
+ - CHEF_VERSION=12.0.3
8
9
  before_script:
9
10
  - chef-client --version
10
11
  notifications:
11
12
  email: false
13
+ sudo: false
data/HISTORY.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 0.11.1 ( 2015-01-26 )
2
+
3
+ * Bug fix: Use `Gem::Version` to parse Chef's version ([#35][#35]) (thanks
4
+ @docwhat!)
5
+
6
+
1
7
  ## 0.11.0 ( 2014-10-27 )
2
8
 
3
9
  * Bug fix: recursive diff would stop if two keys were identical between local
@@ -164,3 +170,4 @@ instead.
164
170
  [#5]: https://github.com/bmarini/knife-inspect/issues/5
165
171
  [#27]: https://github.com/bmarini/knife-inspect/issues/27
166
172
  [#23]: https://github.com/bmarini/knife-inspect/issues/23
173
+ [#35]: https://github.com/bmarini/knife-inspect/issues/35
data/README.md CHANGED
@@ -67,6 +67,7 @@ when everything is in sync or 1 if it's not.
67
67
  * Kirt Fitzpatrick ([@kirtfitzpatrick](https://github.com/kirtfitzpatrick))
68
68
  * Ben Hughes ([@barn](https://github.com/barn))
69
69
  * Grégoire Seux ([@kamaradclimber](https://github.com/kamaradclimber))
70
+ * Christian Höltje ([@docwhat](https://github.com/docwhat))
70
71
 
71
72
  ## Contributing
72
73
 
@@ -1,7 +1,7 @@
1
1
  require 'chef/version'
2
2
  require 'chef/cookbook_version'
3
3
  require 'chef/cookbook_loader'
4
- require 'chef/checksum_cache' if Chef::Version.new(Chef::VERSION) < Chef::Version.new('11.0.0')
4
+ require 'chef/checksum_cache' if Gem::Version.new(Chef::VERSION) < Gem::Version.new('11.0.0')
5
5
 
6
6
  module HealthInspector
7
7
  module Checklists
@@ -1,3 +1,3 @@
1
1
  module HealthInspector
2
- VERSION = '0.11.0'
2
+ VERSION = '0.11.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-inspect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Karékinian
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-10-27 00:00:00.000000000 Z
12
+ date: 2015-01-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake