knife-inspect 0.9.0 → 0.9.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
  SHA1:
3
- metadata.gz: 316a4b1c10a5933ca22aca053893070e92e0d6ce
4
- data.tar.gz: 647775423040ddc38db71ec6fa0fefa242ae5322
3
+ metadata.gz: 89c00f0b6f41512ce3384854fc731746e997aa8b
4
+ data.tar.gz: 5f348ee2a2957d74e67a2d526695227046678f9f
5
5
  SHA512:
6
- metadata.gz: 6cc9b27c85c801807d98e22f255f3f0a4bbe7bdcfb747f521a1c06e9af7a55f4bbbebb66325950a029be16803377279766263e0e636aa81adc4b59112016939f
7
- data.tar.gz: 69d5f911e727f954a8bdaea2ec182092e6bfcb6390b5ab9d5587ce3738c04961407ba9c9571166ea038540841538e192d0ab924b7c8a68ed9aabd1f9446b4008
6
+ metadata.gz: 9cf8232cabde6f90c15d65e78b5d8f826cc30767e68b589406dd4d2478334c5747101af5403bf57a56c2be1f2d2d3a86540a3839f7915b361343e54e89e02caa
7
+ data.tar.gz: c18f0c00b0b9687c2309037c0f8cdb6ebf2c5e988106b8daf5fa3fa046563993bb90b538d9c5bca982989e393531a14256fe1b80b7f1f1177c882da614da7ef1
data/HISTORY.md CHANGED
@@ -1,4 +1,18 @@
1
- ## 0.9.0 ( 2014-08-02 )
1
+ ## 0.9.2 ( 2014-08-11 )
2
+
3
+ * Bug fix: Fixed regression in the regression fix for Chef 10 that broke
4
+ knife-inspect with Chef 11
5
+ ([#25][#25])
6
+
7
+ ## 0.9.1 ( 2014-08-11 )
8
+
9
+ * Bug fix: Fixed regression that broke knife-inspect with Chef 10.32.2
10
+ (and probably previous Chef 10 versions)
11
+ ([#25][#25])
12
+ This release was yanked from RubyGems due to a bug. Please download 0.9.2
13
+ instead.
14
+
15
+ ## 0.9.0 ( 2014-08-11 )
2
16
 
3
17
  * Bug fix: update yajl-ruby dependency to 1.2, 1.1 segfaulted in some cases
4
18
  ([#22][#22])
@@ -134,3 +148,4 @@
134
148
  [#21]: https://github.com/bmarini/knife-inspect/issues/21
135
149
  [#22]: https://github.com/bmarini/knife-inspect/issues/22
136
150
  [#7]: https://github.com/bmarini/knife-inspect/issues/7
151
+ [#25]: https://github.com/bmarini/knife-inspect/issues/25
@@ -1,3 +1,7 @@
1
+ require 'chef/version'
2
+ require 'chef/cookbook_version'
3
+ require 'chef/checksum_cache' if Chef::Version.new(Chef::VERSION) < Chef::Version.new('11.0.0')
4
+
1
5
  module HealthInspector
2
6
  module Checklists
3
7
  class Cookbook < Pairing
@@ -1,3 +1,3 @@
1
1
  module HealthInspector
2
- VERSION = '0.9.0'
2
+ VERSION = '0.9.2'
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.9.0
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Karékinian