knife-inspect 0.11.0 → 0.11.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 +4 -4
- data/.travis.yml +5 -3
- data/HISTORY.md +7 -0
- data/README.md +1 -0
- data/lib/health_inspector/checklists/cookbooks.rb +1 -1
- data/lib/health_inspector/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7ff3f8761b1d71f8cc404ac6873e54cde97c10f
|
|
4
|
+
data.tar.gz: 50881653c57fbaa235c1d3708ed8e5dc0f5cb3e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
7
|
-
- CHEF_VERSION=11.
|
|
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
|
|
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
|
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.
|
|
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:
|
|
12
|
+
date: 2015-01-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|