chef-gen-flavors 0.8.3 → 0.8.4
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/History.md +5 -0
- data/lib/chef_gen/flavors.rb +1 -1
- data/lib/chef_gen/flavors/cucumber/knife.rb +1 -1
- data/lib/chef_gen/snippet/cookbook_base.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: c8bd0fb67be8cef117659dfaa0caf2c8c81e2c9c
|
|
4
|
+
data.tar.gz: 8bf12538b07322f417901f8abfe4ae0395455249
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73b43f3daaffdd39036080a192b7d34da722bebe61bd99e153d917ae92a85939c11e0383547209409af95acbfc4387c7421881e7cbbc45ca2fdd6848c21d4832
|
|
7
|
+
data.tar.gz: f9ac42aab95fe43b9618a9ec2fd7ff56644f8b9668028825ad108802d2f963107ba6109fbdf18b942253ca9f4b58d4e0be7754f194ee7a44e589a850f4abd760
|
data/History.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog for chef-gen-flavors
|
|
2
2
|
|
|
3
|
+
## 0.8.4
|
|
4
|
+
* Specify minimum `berkshelf` version of '3.3' in generated Gemfile. Berkshelf
|
|
5
|
+
3.3+ support `no_proxy` env var so you can download from Public and private
|
|
6
|
+
supermarket sources in your Berksfile.
|
|
7
|
+
|
|
3
8
|
## 0.8.3
|
|
4
9
|
|
|
5
10
|
* TestKitchen snippet: give the dummy task created when TK cannot initalize (e.g. vagrant not installed) a description so it shows up in the output of 'rake -T'
|
data/lib/chef_gen/flavors.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Given(/^a knife.rb that uses chef-gen-flavors$/) do
|
|
2
2
|
write_file 'knife.rb', <<END
|
|
3
|
-
cookbook_path '#{File.expand_path(
|
|
3
|
+
cookbook_path '#{File.expand_path(current_directory)}'
|
|
4
4
|
require 'chef_gen/flavors'
|
|
5
5
|
chefdk.generator_cookbook = ChefGen::Flavors.path
|
|
6
6
|
END
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef-gen-flavors
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James FitzGibbon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-07-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: little-plugger
|