knife-zero 1.1.0 → 1.1.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: 4e6c6c44d87e43b255de4c92ebc1f864372962fe
4
- data.tar.gz: a242067c03f5bdc24db19347a458d308c5de8a4a
3
+ metadata.gz: c69cad1a5652758e33f92a8818877a9f203d288c
4
+ data.tar.gz: a9f5d85804ce849a64a8517da7fcdd7b8a5c8e79
5
5
  SHA512:
6
- metadata.gz: 801bbaacefe0645fa8e648b62d2c877e5b8d43a23372aafdde0b8d03ae52137465e8cd7bc08c028170a3d4cd47a3fd1db8d9a23cd95cd7f10ead1340a289c659
7
- data.tar.gz: 4238451639df3c936f06d2bdc62e9387b3be339af46449cf4b562f9ca8c5baa22c91d304c3801b5803095b5b9c6fe650fd79e440b6c508bb81d7a03e429e8234
6
+ metadata.gz: 933dec330be051cae7d3017b8236412f11651cd49bc4f9b8a94908e8e3e704994d9bcf53daebcb9461ff47798d63fba8ed43555a12627d5a85a7296e25c01d20
7
+ data.tar.gz: eabe188809316c0baaac12b801b7846b160b61c716b4d6bb4d8a24c03ad07bbdee8ee08bd5e52a8d2ec47d4c022e8e5e4715e6b384d71f2d443ac558da795745
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog of knife-zero
2
2
 
3
+ ## v1.1.1
4
+
5
+ - Bugfix: use ::Chef::VERSION instead of chef_version
6
+
3
7
  ## v1.1.0
4
8
 
5
9
  - Upgrade: Remove chef version dependency.
@@ -9,7 +9,7 @@ class Chef
9
9
  client_path = @chef_config[:chef_client_path] || 'chef-client'
10
10
  s = "#{client_path} -j /etc/chef/first-boot.json"
11
11
  s << ' -l debug' if @config[:verbosity] and @config[:verbosity] >= 2
12
- s << " -E #{bootstrap_environment}" if chef_version.to_f != 0.9 # only use the -E option on Chef 0.10+
12
+ s << " -E #{bootstrap_environment}" if ::Chef::VERSION.to_f != 0.9 # only use the -E option on Chef 0.10+
13
13
  s << " -S http://127.0.0.1:8889"
14
14
  s << " -W" if @config[:why_run]
15
15
  s
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Zero
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.1"
4
4
  MAJOR, MINOR, TINY = VERSION.split('.')
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - sawanoboly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-21 00:00:00.000000000 Z
11
+ date: 2014-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler