chef-gen-flavors 0.8.5 → 0.8.6

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: ab8b1dab9bc9b6565d04e5633dcec5c4586b4a84
4
- data.tar.gz: 7f4d1d3f80dbf85d3deba2eebf687af2c3775f98
3
+ metadata.gz: e0b26e3895493d90b9d965e5d2d208372df82043
4
+ data.tar.gz: 7091c3ba4bf917a179fd67bba47723da1422544a
5
5
  SHA512:
6
- metadata.gz: 2cfc7f2e31c63473f749df199fb7090a2e2a7f335538cf4350847b4f1d45c97de88ef89f399c45b3f20481bd8a262e19e70dff17bedf8e2abaf04e4c215a7a89
7
- data.tar.gz: c6e9fba73ad1a146bb4e857d8f472a5e0f2101c1527aaead61cf8ab928153feb6a26fd4706ec74a7a061fbba63a75014f36a5e26abbfe804cb40f20a4fa65d18
6
+ metadata.gz: f0199d065dcf48a1e398f6624250f79af8fb0af4ebd1f6bd9b80b03952eacf77829f938ffa5b6e6f4ea0ffa9e40905ce9bd7f73273fe436ab61739b924257e38
7
+ data.tar.gz: 710bf0afa1023a3ac92c2ca47058d6cae9e114201f7485ac06f22724bcdbc7f53408186b64170772eade67272ae620304c2041aac5934362cbe8685ec26e527d
data/History.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog for chef-gen-flavors
2
2
 
3
+ ## 0.8.6
4
+
5
+ This version contains no code changes; this is a courtesy version bump
6
+ because breaking API changes are coming in v0.9.x. If you have a flavor
7
+ that derives from ChefGen::FlavorBase, you may want to pin to '~> 0.8.6'
8
+ to insulate yourself from these changes.
9
+
10
+ A brief synopsis of what's planned:
11
+
12
+ * extract FlavorBase from this gem into it's own distribution
13
+ * possibly extract the standard snippets into their own distribution as well for those who want the framework without anything extra
14
+ * change the way snippets are added to flavors to be by declaration rather than composition (i.e. you'll call something like `::mixin(Snippet)` rather than `include Snippet`)
15
+
16
+ These changes are to support guaranteed ordering of snippet contents.
17
+ Right now if you want everything that say ChefGen::Snippet::TestKitchen
18
+ provides but want to override just the .kitchen.yml file, you have to do
19
+ silly tricks where your replacement template is added by a method that
20
+ lexically sorts after `content_testkitchen_files`. This is not a solid
21
+ design, and I'm taking the opportunity to fix it while we're still at
22
+ major version 0.
23
+
3
24
  ## 0.8.5
4
25
 
5
26
  * pin to Aruba 0.6.x because of the incompatible changes in subprocess working directories introduced in 0.7
data/README.md CHANGED
@@ -7,6 +7,11 @@
7
7
  * code climate :: [![Code Climate](https://codeclimate.com/github/Nordstrom/chef-gen-flavors/badges/gpa.svg)](https://codeclimate.com/github/Nordstrom/chef-gen-flavors)
8
8
  * docs :: [![Inline docs](http://inch-ci.org/github/nordstrom/chef-gen-flavors.svg?branch=master)](http://inch-ci.org/github/nordstrom/chef-gen-flavors)
9
9
 
10
+ ## UPCOMING API CHANGES
11
+
12
+ Please see the [changelog](History.md) for details of upcoming breaking API changes in
13
+ the 0.9.x series.
14
+
10
15
  ## DESCRIPTION
11
16
 
12
17
  chef-gen-flavors is a framework for creating custom templates for the
@@ -1,14 +1,14 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: chef-gen-flavors 0.8.5.20150716103945 ruby lib
2
+ # stub: chef-gen-flavors 0.8.6.20150806075045 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "chef-gen-flavors"
6
- s.version = "0.8.5.20150716103945"
6
+ s.version = "0.8.6.20150806075045"
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-07-16"
11
+ s.date = "2015-08-06"
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.5'
11
+ VERSION = '0.8.6'
12
12
 
13
13
  extend LittlePlugger path: 'chef_gen/flavor',
14
14
  module: ChefGen::Flavor
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.5
4
+ version: 0.8.6
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-07-16 00:00:00.000000000 Z
11
+ date: 2015-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: little-plugger