knife-inspect 0.11.1 → 0.12.0

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: a7ff3f8761b1d71f8cc404ac6873e54cde97c10f
4
- data.tar.gz: 50881653c57fbaa235c1d3708ed8e5dc0f5cb3e2
3
+ metadata.gz: 6626269c4b43a35aa38d29b4903b08ab8cdd2759
4
+ data.tar.gz: cb2379c1b41f19f880bec679612e7d703683cfbb
5
5
  SHA512:
6
- metadata.gz: 3f854195811257f7ea73e764110d180cd3721ce64a8647dd5dd35d6ed39aa57056bf18d2ba1f465a0de7bc0490b08657b69e01635fd011e2cd1b1a88ffaff962
7
- data.tar.gz: 4843dbc6b3d07c000999d854f1bec3695639a134d6f196db239ac864895160fb95d5bc04e274e790d3cd0b65be2083415a92d1a1f34c7e5bc93bfc8deff0ddcf
6
+ metadata.gz: b9018765a0064ef16df6b4bf3854727285bcce390a15cfa06dacf2bd490f56d8dea151fb53c0012fd4da386e6579f7cba9427f15a016f40e6e98518c9a0d4a47
7
+ data.tar.gz: 7c8b6f93a258e3e28af3898db145f04a095ffabfcf8a1b1a222cef85b5dafd728712eacf2ce0bf4da27b8429d964408ab2fb5de979a3dc5a3035f5612b1a4648
data/HISTORY.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 0.12.0 ( 2015-02-05 )
2
+
3
+ * Bumped Chef compatibility to support Chef 12 ([#36][#36]). This is otherwise
4
+ identical to 0.11.1
5
+
6
+
1
7
  ## 0.11.1 ( 2015-01-26 )
2
8
 
3
9
  * Bug fix: Use `Gem::Version` to parse Chef's version ([#35][#35]) (thanks
data/README.md CHANGED
@@ -57,6 +57,11 @@ when everything is in sync or 1 if it's not.
57
57
  * It's my personal opinion, but I think the output from knife-inspect is more readable. Also I don't understand some of the errors I'm getting with `knife diff` (`Only in .: clients` for example)
58
58
  * I actually didn't know there was a built-in `knife diff` command.
59
59
 
60
+ ## Compatibility
61
+
62
+ This gem is tested with Ruby 2.1 and 2.2 and should be compatible with Chef
63
+ 10, 11 and 12.
64
+
60
65
  ## Contributors
61
66
 
62
67
  (in alphabetical order)
@@ -6,7 +6,7 @@ require "health_inspector/version"
6
6
  chef_version = if ENV.key?('CHEF_VERSION')
7
7
  "= #{ENV['CHEF_VERSION']}"
8
8
  else
9
- ['>= 10', '<= 12']
9
+ '>= 10.0.0'
10
10
  end
11
11
 
12
12
  Gem::Specification.new do |s|
@@ -1,3 +1,3 @@
1
1
  module HealthInspector
2
- VERSION = '0.11.1'
2
+ VERSION = '0.12.0'
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.1
4
+ version: 0.12.0
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: 2015-01-26 00:00:00.000000000 Z
12
+ date: 2015-02-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -73,20 +73,14 @@ dependencies:
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
- version: '10'
77
- - - "<="
78
- - !ruby/object:Gem::Version
79
- version: '12'
76
+ version: 10.0.0
80
77
  type: :runtime
81
78
  prerelease: false
82
79
  version_requirements: !ruby/object:Gem::Requirement
83
80
  requirements:
84
81
  - - ">="
85
82
  - !ruby/object:Gem::Version
86
- version: '10'
87
- - - "<="
88
- - !ruby/object:Gem::Version
89
- version: '12'
83
+ version: 10.0.0
90
84
  - !ruby/object:Gem::Dependency
91
85
  name: yajl-ruby
92
86
  requirement: !ruby/object:Gem::Requirement