chef-gen-flavors 0.8.2 → 0.8.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.md +4 -0
- data/chef-gen-flavors.gemspec +3 -3
- data/lib/chef_gen/flavors.rb +1 -1
- data/lib/chef_gen/snippet/test_kitchen.rb +4 -2
- 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: f3326f274dd9611558179aa6d7409b6140d62041
|
4
|
+
data.tar.gz: 02ff67aac36541ef1773716192d96ed1bf05f5a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7740bd291ddf6e279f168d13f20ea8775eae41baf4c50b25f0b65570305cf9130722034cf9364e6f277a55616e19bdf2f2fbe1febd6e670bb2fb735efbcd741b
|
7
|
+
data.tar.gz: cf149330cc05c8d45cd3cb7c898212cad9c4c679ad8bdd8002a5d7a6f0bcb54612800afae56c9985c4a35726ab3f6ec0f898b0f8ae7d023e591737a5693ba318
|
data/History.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Changelog for chef-gen-flavors
|
2
2
|
|
3
|
+
## 0.8.3
|
4
|
+
|
5
|
+
* 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'
|
6
|
+
|
3
7
|
## 0.8.2
|
4
8
|
|
5
9
|
* TestKitchen snippet: require the TK rake tasks inside the rescue block so that if we blow up because vagrant isn't installed, we can recover
|
data/chef-gen-flavors.gemspec
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: chef-gen-flavors 0.8.
|
2
|
+
# stub: chef-gen-flavors 0.8.3.20150619073155 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "chef-gen-flavors"
|
6
|
-
s.version = "0.8.
|
6
|
+
s.version = "0.8.3.20150619073155"
|
7
7
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
9
9
|
s.require_paths = ["lib"]
|
10
10
|
s.authors = ["James FitzGibbon"]
|
11
|
-
s.date = "2015-06-
|
11
|
+
s.date = "2015-06-19"
|
12
12
|
s.description = "chef-gen-flavors is a framework for creating custom templates for the\n'chef generate' command provided by ChefDK.\n\nThis gem simply provides a framework; templates are provided by separate\ngems, which you can host privately for use within your organization or\npublicly for the Chef community to use.\n\nAt present this is focused primarily on providing templates for generation of\ncookbooks, as this is where most organization-specific customization takes place.\nSupport for the other artifacts that ChefDK can generate may work, but is not\nthe focus of early releases."
|
13
13
|
s.email = ["james.i.fitzgibbon@nordstrom.com"]
|
14
14
|
s.extra_rdoc_files = ["ARUBA_STEPS.md", "History.md", "Manifest.txt", "README.md"]
|
data/lib/chef_gen/flavors.rb
CHANGED
@@ -70,8 +70,10 @@ begin
|
|
70
70
|
require 'kitchen/rake_tasks'
|
71
71
|
Kitchen::RakeTasks.new
|
72
72
|
rescue
|
73
|
-
|
74
|
-
task 'kitchen:all'
|
73
|
+
desc 'placeholder Test Kitchen task when plugins are missing'
|
74
|
+
task 'kitchen:all' do
|
75
|
+
puts 'test-kitchen plugins not installed; this is a placeholder task'
|
76
|
+
end
|
75
77
|
end
|
76
78
|
task integration: 'kitchen:all'
|
77
79
|
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.3
|
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-06-
|
11
|
+
date: 2015-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: little-plugger
|