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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 309745d3953d9785c9c28fbcdcefdf8563c1db07
4
- data.tar.gz: 5865f8723b42b638ca176482a2a49b67201942a4
3
+ metadata.gz: f3326f274dd9611558179aa6d7409b6140d62041
4
+ data.tar.gz: 02ff67aac36541ef1773716192d96ed1bf05f5a8
5
5
  SHA512:
6
- metadata.gz: e50f4592880972cea7b568e8e9012bc4658dd1ae3f0e49918090f2f90fccd0ef46facb4133a831d188c43b1855e95784ca8b4b633c3378fa89f4d39eeec0859c
7
- data.tar.gz: 915b28314657d6956caa48005a1d19e9648f39410298d3a0497ec90f683f8e05331d6611637c0dfe26fbbee18690e0f2d6c951d1d9d8bec8a796e7a552a2652d
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
@@ -1,14 +1,14 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: chef-gen-flavors 0.8.2.20150618150222 ruby lib
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.2.20150618150222"
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-18"
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"]
@@ -8,7 +8,7 @@ module ChefGen
8
8
  # a plugin framework for creating ChefDK generator flavors
9
9
  class Flavors
10
10
  # the version of the gem
11
- VERSION = '0.8.2'
11
+ VERSION = '0.8.3'
12
12
 
13
13
  extend LittlePlugger path: 'chef_gen/flavor',
14
14
  module: ChefGen::Flavor
@@ -70,8 +70,10 @@ begin
70
70
  require 'kitchen/rake_tasks'
71
71
  Kitchen::RakeTasks.new
72
72
  rescue
73
- puts 'test-kitchen initialization failed; disabling kitchen tasks'
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.2
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-18 00:00:00.000000000 Z
11
+ date: 2015-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: little-plugger